From 2661dda585489f338117c3fbd9feb0f03d90cca3 Mon Sep 17 00:00:00 2001 From: Ruihang Xia Date: Tue, 27 Feb 2024 09:36:21 +0800 Subject: [PATCH] update integration test Signed-off-by: Ruihang Xia --- tests-integration/src/tests/instance_test.rs | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/tests-integration/src/tests/instance_test.rs b/tests-integration/src/tests/instance_test.rs index 813e3fcfb424..8136b182f40f 100644 --- a/tests-integration/src/tests/instance_test.rs +++ b/tests-integration/src/tests/instance_test.rs @@ -1873,12 +1873,7 @@ async fn test_custom_storage(instance: Arc) { 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}') "# ) @@ -1927,15 +1922,12 @@ async fn test_custom_storage(instance: Arc) { 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}' )"# )