Skip to content

Commit

Permalink
update integration test
Browse files Browse the repository at this point in the history
Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
  • Loading branch information
waynexia committed Feb 27, 2024
1 parent 44ebe81 commit 100f19b
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions tests-integration/src/tests/instance_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1873,12 +1873,7 @@ async fn test_custom_storage(instance: Arc<dyn MockInstance>) {
a int null primary key,
ts timestamp time index,
)
PARTITION BY RANGE COLUMNS (a) (
PARTITION r0 VALUES LESS THAN (1),
PARTITION r1 VALUES LESS THAN (10),
PARTITION r2 VALUES LESS THAN (100),
PARTITION r3 VALUES LESS THAN (MAXVALUE),
)
PARTITION ON COLUMNS (a) ()
with(storage='{storage_name}')
"#
)
Expand Down Expand Up @@ -1927,11 +1922,8 @@ async fn test_custom_storage(instance: Arc<dyn MockInstance>) {
TIME INDEX ("ts"),
PRIMARY KEY ("a")
)
PARTITION BY RANGE COLUMNS ("a") (
PARTITION r0 VALUES LESS THAN (1),
PARTITION r1 VALUES LESS THAN (10),
PARTITION r2 VALUES LESS THAN (100),
PARTITION r3 VALUES LESS THAN (MAXVALUE)
PARTITION ON COLUMNS ("a") (
)
ENGINE=mito
WITH(
Expand Down

0 comments on commit 100f19b

Please sign in to comment.