Skip to content

Commit

Permalink
[UT] fix test_list_partition_minmax (#54918)
Browse files Browse the repository at this point in the history
  • Loading branch information
murphyatwork authored Jan 10, 2025
1 parent e267ea0 commit 2491673
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/sql/test_list_partition/R/test_list_partition_minmax
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-- name: test_list_partition_minmax
create table t1(user_id int, dt datetime) partition by dt;
create table t1(user_id int, dt datetime) partition by (dt);
-- result:
-- !result
insert into t1 values (1, '2024-10-05 01:01:01'), (2, '2024-10-06 02:02:02'), (3, '2024-10-07 03:03:03'), (4, NULL);
Expand Down
2 changes: 1 addition & 1 deletion test/sql/test_list_partition/T/test_list_partition_minmax
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-- name: test_list_partition_minmax

-- 1. column
create table t1(user_id int, dt datetime) partition by dt;
create table t1(user_id int, dt datetime) partition by (dt);

insert into t1 values (1, '2024-10-05 01:01:01'), (2, '2024-10-06 02:02:02'), (3, '2024-10-07 03:03:03'), (4, NULL);

Expand Down

0 comments on commit 2491673

Please sign in to comment.