diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2013-02-12 12:34:14 +0100 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2013-02-12 12:34:14 +0100 |
commit | 88c76f3b70def1a26f15c7ea23759369ba28392d (patch) | |
tree | 87b9e449177ddecf4a12f205da84ab40644e3c42 /storage/connect/rcmsg.c | |
parent | b91386c2f6964c03de353aa5155e06098055de09 (diff) | |
download | mariadb-git-88c76f3b70def1a26f15c7ea23759369ba28392d.tar.gz |
All use of a character to represent table types or
catalog functions have been changed:
Table_types are now internally represented be enum TABTYPE.
Catalog function names are internally translated to a uint.
The function GetTypeID was modified accordingly and a new
function GetFuncID was implemented in mycat.cc.
Modified:
ha_connect.cc
odbccat.h
odbconn.cpp
tabodbc.cpp
tabfmt.cpp
tabmysql.h
tabmysql.cpp
tabwmi.cpp
mycat.h
mycat.cc
plgdbsem.h
reldef.h
tabdos.cpp
rcmsg.h
Diffstat (limited to 'storage/connect/rcmsg.c')
-rw-r--r-- | storage/connect/rcmsg.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/storage/connect/rcmsg.c b/storage/connect/rcmsg.c index a5c4abc79a3..e1a71cde9c6 100644 --- a/storage/connect/rcmsg.c +++ b/storage/connect/rcmsg.c @@ -129,10 +129,10 @@ char *GetMsgid(int id) case IDS_13: p = "%s: invalid connection key value %d"; break; case IDS_14: p = "SafeDB: %s rc=%d"; break; case IDS_15: p = "Wrong communication Dll called for engine %s"; break; - case IDS_TAB_01: p = "Qualifier"; break; - case IDS_TAB_02: p = "Owner"; break; - case IDS_TAB_03: p = "Name"; break; - case IDS_TAB_04: p = "Type"; break; + case IDS_TAB_01: p = "Table_Qualifier"; break; + case IDS_TAB_02: p = "Table_Owner"; break; + case IDS_TAB_03: p = "Table_Name"; break; + case IDS_TAB_04: p = "Table_Type"; break; case IDS_TAB_05: p = "Remark"; break; case IDS_COL_01: p = "Table_Qualif"; break; case IDS_COL_02: p = "Table_Owner"; break; |