[feature-wip](auto-inc)(step-2) support auto-increment column for duplicate table (#19917)

This commit is contained in:
bobhan1
2023-07-20 18:03:39 +08:00
committed by GitHub
parent c31e826756
commit 367ad9164a
43 changed files with 11203 additions and 16 deletions

View File

@ -66,9 +66,11 @@ public final class FeMetaVersion {
public static final int VERSION_122 = 122;
// For AnalysisInfo
public static final int VERSION_123 = 123;
// For auto-increment column
public static final int VERSION_124 = 124;
// note: when increment meta version, should assign the latest version to VERSION_CURRENT
public static final int VERSION_CURRENT = VERSION_123;
public static final int VERSION_CURRENT = VERSION_124;
// all logs meta version should >= the minimum version, so that we could remove many if clause, for example
// if (FE_METAVERSION < VERSION_94) ...