Skip to content

Commit 4cbf754

Browse files
committed
Add Vertica driver.
1 parent 5ae9ed2 commit 4cbf754

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

sql.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ import (
99
_ "github.com/denisenkom/go-mssqldb" // register the MS-SQL driver
1010
_ "github.com/go-sql-driver/mysql" // register the MySQL driver
1111
log "github.com/golang/glog"
12-
_ "github.com/kshvakov/clickhouse" // register the ClickHouse driver
13-
_ "github.com/lib/pq" // register the PostgreSQL driver
12+
_ "github.com/kshvakov/clickhouse" // register the ClickHouse driver
13+
_ "github.com/lib/pq" // register the PostgreSQL driver
14+
_ "github.com/vertica/vertica-sql-go" // register the Vertica driver
1415
)
1516

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

0 commit comments

Comments
 (0)