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

Parsing support for ENUM with columnstore engine

This commit is contained in:
Nedeljko Stefanovic
2025-06-19 14:33:29 +00:00
parent 78de8799ba
commit ca42ea9266
5 changed files with 33 additions and 2 deletions

View File

@@ -840,6 +840,10 @@ int ProcessDDLStatement(string& ddlStatement, string& schema, const string& /*ta
}
}
if (createTable->fTableDef->fColumns[i]->fType->fType == ddlpackage::DDL_ENUM) {
// TO DO
}
// check varbinary data type
if ((createTable->fTableDef->fColumns[i]->fType->fType == ddlpackage::DDL_VARBINARY) &&
!isVarbinaryAllowed)