[feat](Nereids) persist constraint in table (#29767)

This commit is contained in:
谢健
2024-01-16 18:21:40 +08:00
committed by yiguolei
parent 2916745cf2
commit 4e41e1d797
22 changed files with 683 additions and 45 deletions

View File

@ -72,9 +72,11 @@ public final class FeMetaVersion {
public static final int VERSION_125 = 125;
// For write/read function nullable mode info
public static final int VERSION_126 = 126;
// For constraints
public static final int VERSION_127 = 127;
// note: when increment meta version, should assign the latest version to VERSION_CURRENT
public static final int VERSION_CURRENT = VERSION_126;
public static final int VERSION_CURRENT = VERSION_127;
// all logs meta version should >= the minimum version, so that we could remove many if clause, for example
// if (FE_METAVERSION < VERSION_94) ...