Skip to content

Commit 41dac16

Browse files
authored
Merge pull request #927 from ninjadq/add_azuresql_driver_bind
Add azuresql driver bind
2 parents bc91699 + 25a5113 commit 41dac16

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

bind.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ const (
2222
)
2323

2424
var defaultBinds = map[int][]string{
25-
DOLLAR: []string{"postgres", "pgx", "pq-timeouts", "cloudsqlpostgres", "ql", "nrpostgres", "cockroach"},
26-
QUESTION: []string{"mysql", "sqlite3", "nrmysql", "nrsqlite3"},
27-
NAMED: []string{"oci8", "ora", "goracle", "godror"},
28-
AT: []string{"sqlserver"},
25+
DOLLAR: {"postgres", "pgx", "pq-timeouts", "cloudsqlpostgres", "ql", "nrpostgres", "cockroach"},
26+
QUESTION: {"mysql", "sqlite3", "nrmysql", "nrsqlite3"},
27+
NAMED: {"oci8", "ora", "goracle", "godror"},
28+
AT: {"sqlserver", "azuresql"},
2929
}
3030

3131
var binds sync.Map

0 commit comments

Comments
 (0)