[feature-wip](duplicate_no_keys) add create duplicate table without keys (#18758)

This commit is contained in:
xueweizhang
2023-04-27 09:59:56 +08:00
committed by GitHub
parent 84d040bdbf
commit f9f5bbde6f
9 changed files with 79 additions and 56 deletions

View File

@ -2155,5 +2155,12 @@ public class Config extends ConfigBase {
*/
@ConfField
public static boolean enable_stats = true;
/**
* Whether create a duplicate table without keys by default
* when creating a table which not set key type and key columns
*/
@ConfField(mutable = true, masterOnly = true)
public static boolean experimental_enable_duplicate_without_keys_by_default = false;
}