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 d68535fc70d [fix](case) fix export data consistency table key type
(#32045)
d68535fc70d is described below
commit d68535fc70dfc0d3aefa9c6beac1e9c01eb24502
Author: walter <[email protected]>
AuthorDate: Mon Mar 11 22:14:20 2024 +0800
[fix](case) fix export data consistency table key type (#32045)
---
regression-test/suites/export_p0/test_export_data_consistency.groovy | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/regression-test/suites/export_p0/test_export_data_consistency.groovy
b/regression-test/suites/export_p0/test_export_data_consistency.groovy
index e388d869fff..354010a8582 100644
--- a/regression-test/suites/export_p0/test_export_data_consistency.groovy
+++ b/regression-test/suites/export_p0/test_export_data_consistency.groovy
@@ -68,6 +68,7 @@ suite("test_export_data_consistency", "p0") {
`name` string NULL,
`age` int(11) NULL
)
+ UNIQUE KEY(`id`)
PARTITION BY RANGE(id)
(
PARTITION less_than_20 VALUES LESS THAN ("20"),
@@ -149,6 +150,7 @@ suite("test_export_data_consistency", "p0") {
"label" = "${label}",
"format" = "csv",
"column_separator" = ",",
+ "parallelism" = "10",
"data_consistency" = "partition"
);
"""
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]