[Feature](load) Add submitter and comments to load job (#16878)

* [Feature](load) Add submitter and comments to load job
This commit is contained in:
Zhengguo Yang
2023-02-28 09:06:19 +08:00
committed by GitHub
parent dd1bd6d8f1
commit b51ce415e7
44 changed files with 511 additions and 68 deletions

View File

@ -52,8 +52,11 @@ public final class FeMetaVersion {
public static final int VERSION_115 = 115;
// change Auto to rbac
public static final int VERSION_116 = 116;
// add user and comment to load job
public static final int VERSION_117 = 117;
// note: when increment meta version, should assign the latest version to VERSION_CURRENT
public static final int VERSION_CURRENT = VERSION_116;
public static final int VERSION_CURRENT = VERSION_117;
// all logs meta version should >= the minimum version, so that we could remove many if clause, for example
// if (FE_METAVERSION < VERSION_94) ...