MXS-1929: Make core ResultSet functions private

The functions in the core that generate a ResultSet are now private.
This commit is contained in:
Markus Mäkelä
2018-07-31 10:01:18 +03:00
parent bd48db28ec
commit 8ababa1d39
13 changed files with 82 additions and 25 deletions

View File

@ -32,8 +32,7 @@
#include <maxscale/service.h>
#include <maxscale/session.h>
#include <maxscale/spinlock.h>
MXS_BEGIN_DECLS
#include <maxscale/resultset.hh>
struct maxinfo_session;
@ -137,9 +136,7 @@ extern void maxinfo_free_tree(MAXINFO_TREE *);
extern void maxinfo_execute(DCB *, MAXINFO_TREE *);
extern void maxinfo_send_error(DCB *, int, const char *);
extern void maxinfo_send_parse_error(DCB *, char *, PARSE_ERROR);
extern RESULTSET *maxinfo_variables();
extern RESULTSET *maxinfo_status();
MXS_END_DECLS
extern ResultSet *maxinfo_variables();
extern ResultSet *maxinfo_status();
#endif