Skip to content

Commit

Permalink
Merge branch 'develop' into fix-invalid-arg
Browse files Browse the repository at this point in the history
  • Loading branch information
tisonkun authored Mar 14, 2024
2 parents cc591fa + b4c39bb commit e62bae5
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 e62bae5

Please sign in to comment.