1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

1. Some fixes to the cache interface code.

2. Set a Columnstore_cache table as a non-foreign engine table in isMCSTable().
This commit is contained in:
Gagan Goel
2020-04-29 17:51:09 -04:00
parent 43d5d511d7
commit e671b1d1e2
3 changed files with 19 additions and 14 deletions

View File

@ -54,7 +54,7 @@ class ha_mcs: public handler
public:
ha_mcs(handlerton* hton, TABLE_SHARE* table_arg);
~ha_mcs()
virtual ~ha_mcs()
{
}
@ -237,7 +237,6 @@ public:
int repair(THD* thd, HA_CHECK_OPT* check_opt);
bool is_crashed() const;
friend class ha_mcs_cache;
};