diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2013-05-24 00:19:26 +0200 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2013-05-24 00:19:26 +0200 |
commit | 33b95315680e42754d41f63f72a003f0d69959d3 (patch) | |
tree | 3d44c9739a99883376492b047ca97a4276744561 /storage/connect/tabutil.h | |
parent | 7ef4c5df470e2c1ee0d5e7b57e05deebdcad753e (diff) | |
download | mariadb-git-33b95315680e42754d41f63f72a003f0d69959d3.tar.gz |
- Fix setting default type to MYSQL->PROXY->DOS in some places where it
was not done correctly.
- Fix a bug causing add_field to generate a syntax error on DOUBLE columns
with a 0 decimal value.
- Column can be undefined when Srcdef is specified.
modified:
storage/connect/ha_connect.cc
storage/connect/mycat.cc
storage/connect/tabmysql.cpp
storage/connect/tabutil.cpp
storage/connect/tabutil.h
Diffstat (limited to 'storage/connect/tabutil.h')
-rw-r--r-- | storage/connect/tabutil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/connect/tabutil.h b/storage/connect/tabutil.h index 1405ef211c7..ddf6c2eb601 100644 --- a/storage/connect/tabutil.h +++ b/storage/connect/tabutil.h @@ -18,7 +18,7 @@ typedef class TDBTBC *PTDBTBC; TABLE_SHARE *GetTableShare(PGLOBAL g, THD *thd, const char *db, const char *name, bool& mysql); PQRYRES TabColumns(PGLOBAL g, THD *thd, const char *db, - const char *name, bool info); + const char *name, bool& info); void Remove_tshp(PCATLG cat); |