You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-05 16:15:50 +03:00
Adding support for enum continuation
This commit is contained in:
@@ -108,6 +108,12 @@ bool typesAreSame(const CalpontSystemCatalog::ColType& colType, const ColumnType
|
||||
|
||||
break;
|
||||
|
||||
case (CalpontSystemCatalog::ENUM):
|
||||
if (newType.fType == DDL_ENUM && colType.enumVals == newType.fEnumValues)
|
||||
return true;
|
||||
|
||||
break;
|
||||
|
||||
case (CalpontSystemCatalog::TINYINT):
|
||||
if (newType.fType == DDL_TINYINT && colType.precision == newType.fPrecision &&
|
||||
colType.scale == newType.fScale)
|
||||
|
Reference in New Issue
Block a user