Avoid panic in EnsureDBVersion

pull/29/head
mmatczuk 2017-04-05 12:31:47 +02:00
parent 99e29546ba
commit a66174eb9e
1 changed files with 1 additions and 2 deletions

View File

@ -161,7 +161,6 @@ func versionFilter(v, current, target int64) bool {
// retrieve the current version for this DB.
// Create and initialize the DB version table if it doesn't exist.
func EnsureDBVersion(db *sql.DB) (int64, error) {
rows, err := GetDialect().dbVersionQuery(db)
if err != nil {
return 0, createVersionTable(db)
@ -202,7 +201,7 @@ func EnsureDBVersion(db *sql.DB) (int64, error) {
toSkip = append(toSkip, row.VersionId)
}
panic("unreachable")
return 0, ErrNoNextVersion
}
// Create the goose_db_version table