Literal USE statements are now parsed and classified as a database change queries.
This commit is contained in:
Markus Makela
2015-04-02 08:16:45 +03:00
parent ee2bb2be07
commit 440a6ece59
3 changed files with 58 additions and 7 deletions

View File

@ -74,7 +74,8 @@ typedef enum {
QUERY_OP_CREATE_TABLE = (1 << 7),
QUERY_OP_CREATE_INDEX = (1 << 8),
QUERY_OP_DROP_TABLE = (1 << 9),
QUERY_OP_DROP_INDEX = (1 << 10)
QUERY_OP_DROP_INDEX = (1 << 10),
QUERY_OP_CHANGE_DB = (1 << 11)
}skygw_query_op_t;
typedef struct parsing_info_st {