We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4d96db commit 11bbd04Copy full SHA for 11bbd04
database/clickhouse/clickhouse_test.go
@@ -33,12 +33,12 @@ var (
33
func clickhouseConnectionString(host, port, engine string) string {
34
if engine != "" {
35
return fmt.Sprintf(
36
- "clickhouse://%v:%v?username=user&password=password&database=db&x-multi-statement=true&x-migrations-table-engine=%v&debug=false",
+ "clickhouse://%v:%v/db?username=user&password=password&x-multi-statement=true&x-migrations-table-engine=%v&debug=false",
37
host, port, engine)
38
}
39
40
41
- "clickhouse://%v:%v?username=user&password=password&database=db&x-multi-statement=true&debug=false",
+ "clickhouse://%v:%v/db?username=user&password=password&x-multi-statement=true&debug=false",
42
host, port)
43
44
0 commit comments