MXS-1406 Report CALL operation

Basically it would be trivial to report far more operations
explicitly, but for the fact that the values in qc_query_op_t
currently, quite unnecessarily, form a bitmask.

In 2.2 that is no longer the case, so other operations will be
added there.
This commit is contained in:
Johan Wikman
2017-09-12 15:38:25 +03:00
parent 362234b5d2
commit 49ab5797a2
6 changed files with 27 additions and 18 deletions

View File

@ -94,7 +94,8 @@ typedef enum qc_query_op
QUERY_OP_CHANGE_DB = (1 << 8),
QUERY_OP_LOAD = (1 << 9),
QUERY_OP_GRANT = (1 << 10),
QUERY_OP_REVOKE = (1 << 11)
QUERY_OP_REVOKE = (1 << 11),
QUERY_OP_CALL = (1 << 12),
} qc_query_op_t;
/**