Skip to content

Commit

Permalink
fix: e2e (GreptimeTeam#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
daviderli614 authored and MichaelScofield committed Apr 28, 2024
1 parent 8f099f4 commit 3c75f47
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/e2e/greptimedbcluster_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
Expand Down

0 comments on commit 3c75f47

Please sign in to comment.