This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 2c017399fbd [Fix](Export) fix variable name of code #32637
2c017399fbd is described below
commit 2c017399fbd109bb96ae09373f8dc46d8306e8a7
Author: Tiewei Fang <[email protected]>
AuthorDate: Sat Mar 23 09:15:39 2024 +0800
[Fix](Export) fix variable name of code #32637
---
fe/fe-core/src/main/java/org/apache/doris/analysis/ExportStmt.java | 2 +-
fe/fe-core/src/main/java/org/apache/doris/load/ExportJob.java | 2 +-
.../org/apache/doris/nereids/trees/plans/commands/ExportCommand.java | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/fe/fe-core/src/main/java/org/apache/doris/analysis/ExportStmt.java
b/fe/fe-core/src/main/java/org/apache/doris/analysis/ExportStmt.java
index 1a7d9dc93b5..b7a3a84a826 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/analysis/ExportStmt.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/analysis/ExportStmt.java
@@ -372,7 +372,7 @@ public class ExportStmt extends StatementBase {
}
this.dataConsistency = ExportJob.CONSISTENT_PARTITION;
} else {
- this.dataConsistency = ExportJob.CONSISTENT_ALL;
+ this.dataConsistency = ExportJob.CONSISTENT_NONE;
}
}
diff --git a/fe/fe-core/src/main/java/org/apache/doris/load/ExportJob.java
b/fe/fe-core/src/main/java/org/apache/doris/load/ExportJob.java
index fe28151a546..cc47c641b0c 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/load/ExportJob.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/load/ExportJob.java
@@ -109,7 +109,7 @@ public class ExportJob implements Writable {
private static final int MAXIMUM_TABLETS_OF_OUTFILE_IN_EXPORT =
Config.maximum_tablets_of_outfile_in_export;
- public static final String CONSISTENT_ALL = "all";
+ public static final String CONSISTENT_NONE = "none";
public static final String CONSISTENT_PARTITION = "partition";
@SerializedName("id")
diff --git
a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/ExportCommand.java
b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/ExportCommand.java
index e5484336491..b872f399fad 100644
---
a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/ExportCommand.java
+++
b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/ExportCommand.java
@@ -320,7 +320,7 @@ public class ExportCommand extends Command implements
ForwardWithSync {
}
exportJob.setDataConsistency(ExportJob.CONSISTENT_PARTITION);
} else {
- exportJob.setDataConsistency(ExportJob.CONSISTENT_ALL);
+ exportJob.setDataConsistency(ExportJob.CONSISTENT_NONE);
}
// Must copy session variable, because session variable may be changed
during export job running.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]