diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2014-10-31 12:28:07 +0100 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2014-10-31 12:28:07 +0100 |
commit | 4a17149ba32a604eabf95c198b00fc4b156f8d5d (patch) | |
tree | 24cf8575ba6042de0c23a6a61c391d3889082b6d /storage/connect/plgdbsem.h | |
parent | 652b96482789ddee1b01c69559fc0d3840976f88 (diff) | |
download | mariadb-git-4a17149ba32a604eabf95c198b00fc4b156f8d5d.tar.gz |
- Add new table type VIR and virtual index
modified:
storage/connect/connect.cc
storage/connect/ha_connect.cc
storage/connect/ha_connect.h
storage/connect/mycat.cc
storage/connect/plgdbsem.h
- Get good message when calling ColDB
modified:
storage/connect/connect.cc
- Fix buffer preparation for BIN files
modified:
storage/connect/filamfix.cpp
fix error while updating (force fseek)
modified:
storage/connect/filamfix.cpp
fix error of XCOL column when filtered (typo)
modified:
storage/connect/tabdos.cpp
storage/connect/tabxcl.cpp
fix error when indexing on special column
modified:
storage/connect/tabdos.cpp
Diffstat (limited to 'storage/connect/plgdbsem.h')
-rw-r--r-- | storage/connect/plgdbsem.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/storage/connect/plgdbsem.h b/storage/connect/plgdbsem.h index ef209a9b8b8..bbbbc1486b6 100644 --- a/storage/connect/plgdbsem.h +++ b/storage/connect/plgdbsem.h @@ -72,10 +72,11 @@ enum TABTYPE {TAB_UNDEF = 0, /* Table of undefined type */ TAB_OCCUR = 18, /* OCCUR table */ TAB_PRX = 19, /* Proxy (catalog) table */ TAB_PLG = 20, /* PLG NIY */ - TAB_PIVOT = 21, /* PIVOT NIY */ - TAB_JCT = 22, /* Junction tables NIY */ - TAB_DMY = 23, /* DMY Dummy tables NIY */ - TAB_NIY = 24}; /* Table not implemented yet */ + TAB_PIVOT = 21, /* PIVOT table */ + TAB_VIR = 22, /* Virtual tables */ + TAB_JCT = 23, /* Junction tables NIY */ + TAB_DMY = 24, /* DMY Dummy tables NIY */ + TAB_NIY = 25}; /* Table not implemented yet */ enum AMT {TYPE_AM_ERROR = 0, /* Type not defined */ TYPE_AM_ROWID = 1, /* ROWID type (special column) */ @@ -127,6 +128,7 @@ enum AMT {TYPE_AM_ERROR = 0, /* Type not defined */ TYPE_AM_TFC = 155, /* TFC (Circa) (Fuzzy compare) */ TYPE_AM_DBF = 160, /* DBF Dbase files am type no */ TYPE_AM_JCT = 170, /* Junction tables am type no */ + TYPE_AM_VIR = 171, /* Virtual tables am type no */ TYPE_AM_DMY = 172, /* DMY Dummy tables am type no */ TYPE_AM_SET = 180, /* SET Set tables am type no */ TYPE_AM_MYSQL = 192, /* MYSQL access method type no */ |