[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:
@ -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) ...
|
||||
|
||||
Reference in New Issue
Block a user