summaryrefslogtreecommitdiffstats
path: root/plugin/type_mysql_json/mysql_json.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/type_mysql_json/mysql_json.h')
-rw-r--r--plugin/type_mysql_json/mysql_json.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/plugin/type_mysql_json/mysql_json.h b/plugin/type_mysql_json/mysql_json.h
new file mode 100644
index 00000000..afbacafc
--- /dev/null
+++ b/plugin/type_mysql_json/mysql_json.h
@@ -0,0 +1,45 @@
+/*
+ Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
+ Copyright (c) 2020 MariaDB Foundation
+
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; version 2 of the License.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1335 USA */
+
+#ifndef MYSQL_JSON_INCLUDED
+#define MYSQL_JSON_INCLUDED
+
+#include "my_global.h"
+#include "sql_string.h" // String
+
+enum JSONB_TYPES {
+ JSONB_TYPE_SMALL_OBJECT= 0x0,
+ JSONB_TYPE_LARGE_OBJECT= 0x1,
+ JSONB_TYPE_SMALL_ARRAY= 0x2,
+ JSONB_TYPE_LARGE_ARRAY= 0x3,
+ JSONB_TYPE_LITERAL= 0x4,
+ JSONB_TYPE_INT16= 0x5,
+ JSONB_TYPE_UINT16= 0x6,
+ JSONB_TYPE_INT32= 0x7,
+ JSONB_TYPE_UINT32= 0x8,
+ JSONB_TYPE_INT64= 0x9,
+ JSONB_TYPE_UINT64= 0xA,
+ JSONB_TYPE_DOUBLE= 0xB,
+ JSONB_TYPE_STRING= 0xC,
+ JSONB_TYPE_OPAQUE= 0xF
+};
+
+bool parse_mysql_json_value(String *buffer, JSONB_TYPES type, const uchar *data,
+ size_t len, size_t depth);
+
+#endif /* MYSQL_JSON_INCLUDED */