Skip to content

Commit aab8ae6

Browse files
protomolequletulir
authored andcommitted
store/sqlstore: update postgres dialect check to be more lenient
Closes #746
1 parent f339c71 commit aab8ae6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

store/sqlstore/upgrade.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ package sqlstore
99
import (
1010
"database/sql"
1111
"fmt"
12+
"strings"
1213
)
1314

1415
type upgradeFunc func(*sql.Tx, *Container) error
@@ -250,7 +251,8 @@ func upgradeV2(tx *sql.Tx, container *Container) error {
250251
if err != nil {
251252
return err
252253
}
253-
if container.dialect == "postgres" || container.dialect == "pgx" {
254+
255+
if strings.Contains(container.dialect, "postgres") || container.dialect == "pgx" {
254256
_, err = tx.Exec(fillSigKeyPostgres)
255257
} else {
256258
_, err = tx.Exec(fillSigKeySQLite)

0 commit comments

Comments
 (0)