Hide unused public functions

parse_query and query_is_parsed are not used outside query classifier
anymore. Consequently, they can be made internal.
This commit is contained in:
Johan Wikman 2016-01-11 15:25:40 +02:00
parent 4d155f70b0
commit f57df4b967
2 changed files with 5 additions and 6 deletions

View File

@ -89,6 +89,9 @@ static void parsing_info_set_plain_str(void* ptr, char* str);
static void parsing_info_done(void* ptr);
static void* skygw_get_affected_tables(void* lexptr);
static bool ensure_query_is_parsed(GWBUF* query);
static bool parse_query(GWBUF* querybuf);
static bool query_is_parsed(GWBUF* buf);
/**
* Ensures that the query is parsed. If it is not already parsed, it
@ -169,7 +172,7 @@ retblock:
*
* @return true if succeed, false otherwise
*/
bool parse_query(GWBUF* querybuf)
static bool parse_query(GWBUF* querybuf)
{
bool succp;
THD* thd;
@ -248,7 +251,7 @@ retblock:
*
* @return true or false
*/
bool query_is_parsed(GWBUF* buf)
static bool query_is_parsed(GWBUF* buf)
{
CHK_GWBUF(buf);
return (buf != NULL && GWBUF_IS_PARSED(buf));

View File

@ -104,10 +104,6 @@ char* qc_get_qtype_str(qc_query_type_t qtype);
char* qc_get_affected_fields(GWBUF* buf);
char** qc_get_database_names(GWBUF* querybuf, int* size);
// To be removed.
bool parse_query(GWBUF* querybuf);
bool query_is_parsed(GWBUF* buf);
EXTERN_C_BLOCK_END
#endif