Skip to content

Commit 11bbd04

Browse files
committed
remove database query string until clickhouse-go for patch merged
1 parent a4d96db commit 11bbd04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

database/clickhouse/clickhouse_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ var (
3333
func clickhouseConnectionString(host, port, engine string) string {
3434
if engine != "" {
3535
return fmt.Sprintf(
36-
"clickhouse://%v:%v?username=user&password=password&database=db&x-multi-statement=true&x-migrations-table-engine=%v&debug=false",
36+
"clickhouse://%v:%v/db?username=user&password=password&x-multi-statement=true&x-migrations-table-engine=%v&debug=false",
3737
host, port, engine)
3838
}
3939

4040
return fmt.Sprintf(
41-
"clickhouse://%v:%v?username=user&password=password&database=db&x-multi-statement=true&debug=false",
41+
"clickhouse://%v:%v/db?username=user&password=password&x-multi-statement=true&debug=false",
4242
host, port)
4343
}
4444

0 commit comments

Comments
 (0)