[feature-wip](recover) new recover ddl and support show catalog recycle bin (#13067)

This commit is contained in:
xueweizhang
2022-10-31 17:44:56 +08:00
committed by GitHub
parent f49a0daf54
commit ba177a15cb
26 changed files with 1214 additions and 240 deletions

View File

@ -46,8 +46,10 @@ public final class FeMetaVersion {
public static final int VERSION_112 = 112;
// add password options
public static final int VERSION_113 = 113;
// add new recover info for recover ddl
public static final int VERSION_114 = 114;
// note: when increment meta version, should assign the latest version to VERSION_CURRENT
public static final int VERSION_CURRENT = VERSION_113;
public static final int VERSION_CURRENT = VERSION_114;
// all logs meta version should >= the minimum version, so that we could remove many if clause, for example
// if (FE_METAVERSION < VERSION_94) ...