Skip to content

Commit

Permalink
update integration test
Browse files Browse the repository at this point in the history
Signed-off-by: Ruihang Xia <[email protected]>
  • Loading branch information
waynexia committed Feb 27, 2024
1 parent 44ebe81 commit 2661dda
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 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,15 +1922,12 @@ 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(
regions = 4,
regions = 1,
storage = '{storage_name}'
)"#
)
Expand Down

0 comments on commit 2661dda

Please sign in to comment.