diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2013-12-03 22:59:40 +0100 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2013-12-03 22:59:40 +0100 |
commit | ee2f04450b45515c507e4511c26e48e2b846aa73 (patch) | |
tree | 2c1d9bec56e1268c8c41629ae1dd4f1d8253f471 /storage/connect/xobject.h | |
parent | d240a0418cf6d59fba711f0677f164d9ee881b7e (diff) | |
download | mariadb-git-ee2f04450b45515c507e4511c26e48e2b846aa73.tar.gz |
- Add support for unsigned numeric types
added:
storage/connect/mysql-test/connect/r/unsigned.result
storage/connect/mysql-test/connect/t/unsigned.test
modified:
storage/connect/colblk.cpp
storage/connect/colblk.h
storage/connect/connect.cc
storage/connect/ha_connect.cc
storage/connect/myconn.cpp
storage/connect/mysql-test/connect/r/mysql_discovery.result
storage/connect/mysql-test/connect/r/xml.result
storage/connect/myutil.cpp
storage/connect/myutil.h
storage/connect/plgdbsem.h
storage/connect/tabdos.cpp
storage/connect/tabfix.cpp
storage/connect/tabmysql.cpp
storage/connect/tabutil.cpp
storage/connect/valblk.cpp
storage/connect/valblk.h
storage/connect/value.cpp
storage/connect/value.h
storage/connect/xobject.cpp
storage/connect/xobject.h
Diffstat (limited to 'storage/connect/xobject.h')
-rw-r--r-- | storage/connect/xobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/connect/xobject.h b/storage/connect/xobject.h index 79325f155cf..74d571a6e60 100644 --- a/storage/connect/xobject.h +++ b/storage/connect/xobject.h @@ -124,7 +124,7 @@ class DllExport CONSTANT : public XOBJECT { {return Value->SetConstFormat(g, fmt);} virtual int CheckSpcCol(PTDB, int) {return 1;} void Convert(PGLOBAL g, int newtype); - bool Rephrase(PGLOBAL g, PSZ work); +// bool Rephrase(PGLOBAL g, PSZ work); void SetValue(PVAL vp) {Value = vp;} virtual bool VerifyColumn(PTBX txp) {return true;} virtual bool VerifyTdb(PTDB& tdbp) {return true;} |