[regression](struct-type) add more regression tests for struct and map type (#16790)
This commit forbid struct and map column in Materialized view and add more regression tests.
This commit is contained in:
@ -1112,8 +1112,20 @@ public enum PrimitiveType {
|
||||
return this == MAP;
|
||||
}
|
||||
|
||||
public boolean isStructType() {
|
||||
return this == STRUCT;
|
||||
}
|
||||
|
||||
public boolean isComplexType() {
|
||||
return this == HLL || this == BITMAP;
|
||||
return this == ARRAY || this == MAP || this == STRUCT;
|
||||
}
|
||||
|
||||
public boolean isHllType() {
|
||||
return this == HLL;
|
||||
}
|
||||
|
||||
public boolean isBitmapType() {
|
||||
return this == BITMAP;
|
||||
}
|
||||
|
||||
public boolean isVariantType() {
|
||||
|
||||
Reference in New Issue
Block a user