diff options
author | Sergei Krivonos <name@localhost.localdomain> | 2021-10-16 02:35:16 +0300 |
---|---|---|
committer | Sergei Krivonos <name@localhost.localdomain> | 2021-10-16 02:35:16 +0300 |
commit | cf8e78a40170118e2595e35c9c5f43aedeca91a0 (patch) | |
tree | 70c2c3f3c39ef3ef3bb6b9b59aeb1b6e5460c1df /sql/my_json_writer.cc | |
parent | df383043427fb22b0735fe31968db860f4cdb7a0 (diff) | |
download | mariadb-git-cf8e78a40170118e2595e35c9c5f43aedeca91a0.tar.gz |
Implemented Json_writer_array & Json_writer_object subitems name presence control
Diffstat (limited to 'sql/my_json_writer.cc')
-rw-r--r-- | sql/my_json_writer.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/my_json_writer.cc b/sql/my_json_writer.cc index 3234b8f9995..e4033ed0c02 100644 --- a/sql/my_json_writer.cc +++ b/sql/my_json_writer.cc @@ -260,6 +260,8 @@ void Json_writer::add_str(const String &str) add_str(str.ptr(), str.length()); } +thread_local std::vector<bool> Json_writer_struct::named_items_expectation; + Json_writer_temp_disable::Json_writer_temp_disable(THD *thd_arg) { thd= thd_arg; |