summaryrefslogtreecommitdiff
path: root/storage/connect/xobject.h
diff options
context:
space:
mode:
authorOlivier Bertrand <bertrandop@gmail.com>2015-01-23 17:54:53 +0100
committerOlivier Bertrand <bertrandop@gmail.com>2015-01-23 17:54:53 +0100
commitdc091a29352bf034ce699395f26a939020c9422e (patch)
tree0fd65ef8802e1ee5771c71c879b1c83cb3905764 /storage/connect/xobject.h
parente57677238379624fc4aa1ff5b2852acfad5c2372 (diff)
downloadmariadb-git-dc091a29352bf034ce699395f26a939020c9422e.tar.gz
- Fix MDEV-7489 (in add_field)
modified: storage/connect/ha_connect.cc - Fix MDEV-7494 (adding Insert_quoted in the STRING class) modified: storage/connect/tabmysql.cpp storage/connect/xobject.cpp storage/connect/xobject.h - Fix MDEV-7498 in value.cpp (AllocateValue) modified: storage/connect/value.cpp - Handle backslash in Json serialize + uchar + typo. modified: storage/connect/json.cpp storage/connect/tabjson.cpp
Diffstat (limited to 'storage/connect/xobject.h')
-rw-r--r--storage/connect/xobject.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/storage/connect/xobject.h b/storage/connect/xobject.h
index bb7b0150ed8..3660ee86918 100644
--- a/storage/connect/xobject.h
+++ b/storage/connect/xobject.h
@@ -138,6 +138,7 @@ class DllExport STRING : public BLOCK {
bool Append(STRING &str);
bool Append(char c);
bool Resize(uint n);
+ bool Append_quoted(PSZ s);
inline void Trim(void) {(void)Resize(Length + 1);}
inline void Chop(void) {if (Length) Strp[--Length] = 0;}
inline void RepLast(char c) {if (Length) Strp[Length-1] = c;}