1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +03:00

Adding support for enum continuation

This commit is contained in:
Nedeljko Stefanovic
2025-06-30 08:18:05 +00:00
parent ca42ea9266
commit 80bddf575a
12 changed files with 121 additions and 4 deletions

View File

@ -199,6 +199,8 @@ inline int convertDataType(int dataType)
case ddlpackage::DDL_UNSIGNED_DOUBLE: calpontDataType = execplan::CalpontSystemCatalog::UDOUBLE; break;
case ddlpackage::DDL_ENUM: calpontDataType = execplan::CalpontSystemCatalog::ENUM; break;
default: throw runtime_error("Unsupported datatype!");
}