mirror of https://github.com/pressly/goose.git
Avoid panic in EnsureDBVersion
parent
99e29546ba
commit
a66174eb9e
|
@ -161,7 +161,6 @@ func versionFilter(v, current, target int64) bool {
|
||||||
// retrieve the current version for this DB.
|
// retrieve the current version for this DB.
|
||||||
// Create and initialize the DB version table if it doesn't exist.
|
// Create and initialize the DB version table if it doesn't exist.
|
||||||
func EnsureDBVersion(db *sql.DB) (int64, error) {
|
func EnsureDBVersion(db *sql.DB) (int64, error) {
|
||||||
|
|
||||||
rows, err := GetDialect().dbVersionQuery(db)
|
rows, err := GetDialect().dbVersionQuery(db)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return 0, createVersionTable(db)
|
return 0, createVersionTable(db)
|
||||||
|
@ -202,7 +201,7 @@ func EnsureDBVersion(db *sql.DB) (int64, error) {
|
||||||
toSkip = append(toSkip, row.VersionId)
|
toSkip = append(toSkip, row.VersionId)
|
||||||
}
|
}
|
||||||
|
|
||||||
panic("unreachable")
|
return 0, ErrNoNextVersion
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create the goose_db_version table
|
// Create the goose_db_version table
|
||||||
|
|
Loading…
Reference in New Issue