diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2021-07-24 16:28:57 +0200 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2021-07-24 16:28:57 +0200 |
commit | 0f18135ec8f90f5736829fb36cab3da9196fd09f (patch) | |
tree | 1bd1704bac088491e727b4edf397a4b0e3cbbfab /storage/connect/json.h | |
parent | 1c4b917f0e82081950ca256fd7698dab8f4722e6 (diff) | |
download | mariadb-git-0f18135ec8f90f5736829fb36cab3da9196fd09f.tar.gz |
- Make user variable prefix recognized by IsArgJson and IsJson
modified: storage/connect/bsonudf.cpp
modified: storage/connect/jsonudf.cpp
- Stringify option is now a ; separated list of columns
modified: storage/connect/json.cpp
modified: storage/connect/json.h
modified: storage/connect/mongo.h
modified: storage/connect/tabbson.cpp
modified: storage/connect/tabcmg.cpp
modified: storage/connect/tabcmg.h
modified: storage/connect/tabjmg.cpp
modified: storage/connect/tabjmg.h
modified: storage/connect/tabjson.cpp
- PrepareColist not a static function anymore (+ typo)
modified: storage/connect/taboccur.cpp
- JDVC: Recognize schema (database) from a wrapper server
modified: storage/connect/tabjdbc.cpp
Diffstat (limited to 'storage/connect/json.h')
-rw-r--r-- | storage/connect/json.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/storage/connect/json.h b/storage/connect/json.h index 566cb64cc23..53fc5f65e7b 100644 --- a/storage/connect/json.h +++ b/storage/connect/json.h @@ -67,6 +67,7 @@ PJSON ParseJson(PGLOBAL g, char* s, size_t n, int* prty = NULL, bool* b = NULL); PSZ Serialize(PGLOBAL g, PJSON jsp, char *fn, int pretty); DllExport bool IsNum(PSZ s); bool IsArray(PSZ s); +bool Stringified(PCSZ strfy, char *colname); /***********************************************************************/ /* Class JDOC. The class for parsing and serializing json documents. */ |