From dc7d80860f60705c5b19a157f2f8d50352f8fa52 Mon Sep 17 00:00:00 2001 From: walter Date: Mon, 11 Mar 2024 22:14:20 +0800 Subject: [PATCH] [fix](case) fix export data consistency table key type (#32045) --- .../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 e388d869ff..354010a858 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" ); """