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

@ -6094,7 +6094,9 @@ bool isMCSTable(TABLE* table_ptr)
string engineName = table_ptr->s->db_plugin->name.str;
#endif
if (engineName == "Columnstore" || engineName == "InfiniDB")
if (engineName == "Columnstore" ||
engineName == "InfiniDB" ||
engineName == "Columnstore_cache")
return true;
else
return false;