1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-07 03:22:57 +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 2e2b4b3f82
commit b96e5e6618
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)