[Fix](multi-catalog) Make BE selection policy works fine when enable prefer_compute_node_for_external_table (#19346)

This commit is contained in:
Mingyu Chen
2023-05-12 15:32:50 +08:00
committed by GitHub
parent 860ce97622
commit 26e930eed1
9 changed files with 146 additions and 111 deletions

View File

@ -58,11 +58,13 @@ public final class FeMetaVersion {
public static final int VERSION_118 = 118;
// TablePropertyInfo add db id
public static final int VERSION_119 = 119;
// For export job
public static final int VERSION_120 = 120;
// For BackendHbResponse node type
public static final int VERSION_121 = 121;
// note: when increment meta version, should assign the latest version to VERSION_CURRENT
public static final int VERSION_CURRENT = VERSION_120;
public static final int VERSION_CURRENT = VERSION_121;
// all logs meta version should >= the minimum version, so that we could remove many if clause, for example
// if (FE_METAVERSION < VERSION_94) ...