[feature-wip](multi-catalog)(resubmit) add catalog level privileges (#10345)

This commit is contained in:
Ashin Gau
2022-06-23 14:10:11 +08:00
committed by GitHub
parent f466668d48
commit 6a54fc2fe5
31 changed files with 754 additions and 311 deletions

View File

@ -40,8 +40,10 @@ public final class FeMetaVersion {
public static final int VERSION_109 = 109;
// For routine load user info
public static final int VERSION_110 = 110;
// add catalog PrivTable in PaloAuth to support unified privilege management
public static final int VERSION_111 = 111;
// note: when increment meta version, should assign the latest version to VERSION_CURRENT
public static final int VERSION_CURRENT = VERSION_110;
public static final int VERSION_CURRENT = VERSION_111;
// all logs meta version should >= the minimum version, so that we could remove many if clause, for example
// if (FE_METAVERSION < VERSION_94) ...