[fix](case) fix export data consistency table key type (#32045)

This commit is contained in:
walter
2024-03-11 22:14:20 +08:00
committed by yiguolei
parent 926908ece2
commit dc7d80860f

View File

@ -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"
);
"""