Hello, I found issue #1489 and it may be similar, but i think my problem need different fix. driver: clickhouse-go/v2 v2.30.0 ## Problem: question mark in comment section recognized as query param. ### Example ```golang func main() { conn, err := clickhouse.Open(&clickhouse.Options{Addr: []string{"localhost:9001"}}) if err != nil { panic(err) } row := conn.QueryRow(context.TODO(), "select $1 --some comment with ?", "clickhouse") fmt.Println(row.Err()) } ``` Output: ``` clickhouse [bind]: mixed named, numeric or positional parameters ``` I think method [bind()](https://github.com/ClickHouse/clickhouse-go/blob/main/bind.go#L67) has incorrect regexps. Need to edit regexp or pass query in it without comments