diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2013-04-03 21:54:02 +0200 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2013-04-03 21:54:02 +0200 |
commit | 7e7d3ce558b0b504cc4e4c427bd8033764951333 (patch) | |
tree | d5b4db624d2b0f21bfbdc71e2af91edad9146465 /storage/connect/mycat.h | |
parent | 115a373b889e51cbb3d17e665da28f2308e1b0cc (diff) | |
download | mariadb-git-7e7d3ce558b0b504cc4e4c427bd8033764951333.tar.gz |
- Block creating tables with auto_incremented colummns (not supported)
+ allow nullable columns for TBL tables
modified:
storage/connect/ha_connect.cc
storage/connect/ha_connect.h
storage/connect/mycat.cc
storage/connect/mycat.h
Diffstat (limited to 'storage/connect/mycat.h')
-rw-r--r-- | storage/connect/mycat.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/storage/connect/mycat.h b/storage/connect/mycat.h index 037dd17fb6c..d30f591f264 100644 --- a/storage/connect/mycat.h +++ b/storage/connect/mycat.h @@ -37,6 +37,7 @@ typedef class ha_connect *PHC; TABTYPE GetTypeID(const char *type); bool IsFileType(TABTYPE type); bool IsTypeNullable(TABTYPE type); +bool IsTypeFixed(TABTYPE type); uint GetFuncID(const char *func); /***********************************************************************/ |