[pick](Variant) truncate key when column is variant type when crea… (#40238)
#39988
This commit is contained in:
@ -265,7 +265,7 @@ public class CreateMTMVInfo {
|
||||
if (type.isFloatLikeType() || type.isStringType() || type.isJsonType()
|
||||
|| catalogType.isComplexType() || type.isBitmapType() || type.isHllType()
|
||||
|| type.isQuantileStateType() || type.isJsonType() || type.isStructType()
|
||||
|| column.getAggType() != null) {
|
||||
|| column.getAggType() != null || type.isVariantType()) {
|
||||
break;
|
||||
}
|
||||
keys.add(column.getName());
|
||||
|
||||
Reference in New Issue
Block a user