[FeMeta](function) write function nullable mode info (#25535)
notice: this PR have change the fe meta version. the nullable mode of udf-function is important, if not write to info, it's will be loss after restart.
This commit is contained in:
@ -70,9 +70,11 @@ public final class FeMetaVersion {
|
||||
public static final int VERSION_124 = 124;
|
||||
// For write/read auto create partition expr
|
||||
public static final int VERSION_125 = 125;
|
||||
// For write/read function nullable mode info
|
||||
public static final int VERSION_126 = 126;
|
||||
|
||||
// note: when increment meta version, should assign the latest version to VERSION_CURRENT
|
||||
public static final int VERSION_CURRENT = VERSION_125;
|
||||
public static final int VERSION_CURRENT = VERSION_126;
|
||||
|
||||
// all logs meta version should >= the minimum version, so that we could remove many if clause, for example
|
||||
// if (FE_METAVERSION < VERSION_94) ...
|
||||
|
||||
Reference in New Issue
Block a user