Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions sql.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ import (
_ "github.com/denisenkom/go-mssqldb" // register the MS-SQL driver
_ "github.com/go-sql-driver/mysql" // register the MySQL driver
log "github.com/golang/glog"
_ "github.com/kshvakov/clickhouse" // register the ClickHouse driver
_ "github.com/lib/pq" // register the PostgreSQL driver
_ "github.com/kshvakov/clickhouse" // register the ClickHouse driver
_ "github.com/lib/pq" // register the PostgreSQL driver
_ "github.com/vertica/vertica-sql-go" // register the Vertica driver
)

// OpenConnection extracts the driver name from the DSN (expected as the URI scheme), adjusts it where necessary (e.g.
Expand Down