MDEV-5313 Improving audit api.

Service added to handle json.
This commit is contained in:
Alexey Botchkov 2018-12-12 01:49:39 +04:00
commit b1527ef51c
21 changed files with 442 additions and 16 deletions

View file

@ -174,11 +174,11 @@ enum json_value_types
{
JSON_VALUE_OBJECT=1,
JSON_VALUE_ARRAY=2,
JSON_VALUE_STRING,
JSON_VALUE_NUMBER,
JSON_VALUE_TRUE,
JSON_VALUE_FALSE,
JSON_VALUE_NULL
JSON_VALUE_STRING=3,
JSON_VALUE_NUMBER=4,
JSON_VALUE_TRUE=5,
JSON_VALUE_FALSE=6,
JSON_VALUE_NULL=7
};