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

Merge pull request #1254 from mariadb-corporation/columnstore_cache

Columnstore cache
This commit is contained in:
Roman Nozdrin
2020-06-15 14:26:43 +03:00
committed by GitHub
7 changed files with 724 additions and 16 deletions

View File

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