Skip to content

Commit

Permalink
[fix](case) fix export data consistency table key type (apache#32045)
Browse files Browse the repository at this point in the history
  • Loading branch information
w41ter authored Mar 11, 2024
1 parent cd59192 commit d68535f
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down Expand Up @@ -149,6 +150,7 @@ suite("test_export_data_consistency", "p0") {
"label" = "${label}",
"format" = "csv",
"column_separator" = ",",
"parallelism" = "10",
"data_consistency" = "partition"
);
"""
Expand Down

0 comments on commit d68535f

Please sign in to comment.