[feature](struct-type/map-type) Add switch for struct and map type for creating table (#16379)
Add switches to forbid uses creating table with struct or map column.
This commit is contained in:
@ -1740,6 +1740,18 @@ public class Config extends ConfigBase {
|
||||
@ConfField(mutable = true, masterOnly = true)
|
||||
public static boolean enable_array_type = false;
|
||||
|
||||
/**
|
||||
* Support complex data type MAP.
|
||||
*/
|
||||
@ConfField(mutable = true, masterOnly = true)
|
||||
public static boolean enable_map_type = false;
|
||||
|
||||
/**
|
||||
* Support complex data type STRUCT.
|
||||
*/
|
||||
@ConfField(mutable = true, masterOnly = true)
|
||||
public static boolean enable_struct_type = false;
|
||||
|
||||
/**
|
||||
* The timeout of executing async remote fragment.
|
||||
* In normal case, the async remote fragment will be executed in a short time. If system are under high load
|
||||
|
||||
Reference in New Issue
Block a user