From 6109f6fbde5bcdf11fc7ac98f914ddb0ecd73a49 Mon Sep 17 00:00:00 2001 From: liyang Date: Thu, 14 Mar 2024 21:18:51 +0800 Subject: [PATCH] fix: e2e --- tests/e2e/greptimedbcluster_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/e2e/greptimedbcluster_test.go b/tests/e2e/greptimedbcluster_test.go index af2e83a7..daf418ea 100644 --- a/tests/e2e/greptimedbcluster_test.go +++ b/tests/e2e/greptimedbcluster_test.go @@ -39,10 +39,10 @@ const ( TIME INDEX (ts), PRIMARY KEY(n) ) - PARTITION BY RANGE COLUMNS (n) ( - PARTITION r0 VALUES LESS THAN (5), - PARTITION r1 VALUES LESS THAN (9), - PARTITION r2 VALUES LESS THAN (MAXVALUE), + PARTITION ON COLUMNS (n) ( + n < 5, + n < 9, + n >= 9 )` insertDataSQLStr = "INSERT INTO dist_table(n, row_id) VALUES (%d, %d)"