[Enhencement](Export) support export with outfile syntax (#18325)

`Export` syntax provides asynchronous export function, but `Export` does not achieve vectorization.
`Outfile` syntax provides synchronous export function`.
So we can reimplement the export syntax with oufile syntax.
This commit is contained in:
Tiewei Fang
2023-04-20 17:27:04 +08:00
committed by GitHub
parent ea795b9909
commit 8e2146f48c
22 changed files with 643 additions and 1013 deletions

View File

@ -59,8 +59,10 @@ public final class FeMetaVersion {
// TablePropertyInfo add db id
public static final int VERSION_119 = 119;
public static final int VERSION_120 = 120;
// note: when increment meta version, should assign the latest version to VERSION_CURRENT
public static final int VERSION_CURRENT = VERSION_119;
public static final int VERSION_CURRENT = VERSION_120;
// all logs meta version should >= the minimum version, so that we could remove many if clause, for example
// if (FE_METAVERSION < VERSION_94) ...