[feature](colocate) support cross database colocate join (#18152)

This commit is contained in:
Mingyu Chen
2023-04-03 14:03:42 +08:00
committed by GitHub
parent e260dca7a1
commit ecd3fd07f6
18 changed files with 476 additions and 127 deletions

View File

@ -56,9 +56,11 @@ public final class FeMetaVersion {
public static final int VERSION_117 = 117;
// change frontend meta to json, add hostname to MasterInfo
public static final int VERSION_118 = 118;
// TablePropertyInfo add db id
public static final int VERSION_119 = 119;
// note: when increment meta version, should assign the latest version to VERSION_CURRENT
public static final int VERSION_CURRENT = VERSION_118;
public static final int VERSION_CURRENT = VERSION_119;
// all logs meta version should >= the minimum version, so that we could remove many if clause, for example
// if (FE_METAVERSION < VERSION_94) ...