1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-08 14:22:09 +03:00

MCOL-978 Disable QCache for ColumnStore

ColumnStore tables can have data modifications away from a specific
MariaDB server. This means it is possible for QCache to not be
invalidated properly in vtable mode 0. This patch makes sure it is
disabled for ColumnStore.
This commit is contained in:
Andrew Hutchings
2017-12-12 21:11:52 +00:00
parent b795e6b781
commit 86b12cabae

View File

@@ -239,6 +239,8 @@ public:
THR_LOCK_DATA** store_lock(THD* thd, THR_LOCK_DATA** to, THR_LOCK_DATA** store_lock(THD* thd, THR_LOCK_DATA** to,
enum thr_lock_type lock_type); ///< required enum thr_lock_type lock_type); ///< required
const COND* cond_push(const COND* cond); const COND* cond_push(const COND* cond);
uint8 table_cache_type() { return HA_CACHE_TBL_NOCACHE; }
}; };
#endif //HA_CALPONT_H__ #endif //HA_CALPONT_H__