Skip to content

Commit

Permalink
[Test] fix sql (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
IHEII authored Feb 26, 2024
1 parent 34adae1 commit 93a05c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/query/query_hash_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (

const (
queryHashTableName = "queryHashTable"
queryHashTableCreateStatement = "create table if not exists queryHashTable(`c1` bigint(20) not null, c2 bigint(20) not null, c3 varchar(20) default 'hello', index i1(`c1`, `c3`) local, primary key (`c1`, `c2`)) partition by key(c1) partitions 15;"
queryHashTableCreateStatement = "create table if not exists queryHashTable(`c1` bigint(20) not null, c2 bigint(20) not null, c3 varchar(20) default 'hello', index i1(`c1`, `c3`) local, primary key (`c1`, `c2`)) partition by hash(c1) partitions 15;"
)

func prepareHashRecord(recordCount int) {
Expand Down

0 comments on commit 93a05c0

Please sign in to comment.