summaryrefslogtreecommitdiff
path: root/storage/connect/reldef.h
diff options
context:
space:
mode:
authorOlivier Bertrand <bertrandop@gmail.com>2013-02-12 12:34:14 +0100
committerOlivier Bertrand <bertrandop@gmail.com>2013-02-12 12:34:14 +0100
commit88c76f3b70def1a26f15c7ea23759369ba28392d (patch)
tree87b9e449177ddecf4a12f205da84ab40644e3c42 /storage/connect/reldef.h
parentb91386c2f6964c03de353aa5155e06098055de09 (diff)
downloadmariadb-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/reldef.h')
-rw-r--r--storage/connect/reldef.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/connect/reldef.h b/storage/connect/reldef.h
index 8f14d28599f..4bf64d28208 100644
--- a/storage/connect/reldef.h
+++ b/storage/connect/reldef.h
@@ -85,7 +85,7 @@ class DllExport TABDEF : public RELDEF { /* Logical table descriptor */
// Members
PSZ Owner; /* Table owner (for ODBC) */
PSZ Desc; /* Table description */
- char Catfunc; /* Catalog function */
+ uint Catfunc; /* Catalog function ID */
int Card; /* (max) number of rows in table */
int Elemt; /* Number of rows in blocks or rowset */
int Sort; /* Table already sorted ??? */