Better version duplicate check

pull/8/head
Vojtech Vitek (V-Teq) 2016-08-15 15:29:29 -04:00
parent 6a2ef004b5
commit 96680a8221
3 changed files with 27 additions and 5 deletions

View File

@ -3,9 +3,33 @@ package goose
import ( import (
"database/sql" "database/sql"
"fmt" "fmt"
"sync"
) )
var (
duplicateCheckOnce sync.Once
minVersion = int64(0)
maxVersion = int64((1 << 63) - 1)
)
func checkVersionDuplicates(dir string) error {
migrations, err := CollectMigrations(dir, minVersion, maxVersion)
if err != nil {
return err
}
// Try sorting all migrations, so we get panic on any duplicates.
ms := migrationSorter(migrations)
ms.Sort(true)
ms.Sort(false)
return nil
}
func Run(command string, db *sql.DB, dir string, args ...string) error { func Run(command string, db *sql.DB, dir string, args ...string) error {
if err := checkVersionDuplicates(dir); err != nil {
return err
}
switch command { switch command {
case "up": case "up":
if err := Up(db, dir); err != nil { if err := Up(db, dir); err != nil {

View File

@ -43,7 +43,7 @@ func (ms migrationSorter) Len() int { return len(ms) }
func (ms migrationSorter) Swap(i, j int) { ms[i], ms[j] = ms[j], ms[i] } func (ms migrationSorter) Swap(i, j int) { ms[i], ms[j] = ms[j], ms[i] }
func (ms migrationSorter) Less(i, j int) bool { func (ms migrationSorter) Less(i, j int) bool {
if ms[i].Version == ms[j].Version { if ms[i].Version == ms[j].Version {
panic(fmt.Sprintf("goose: duplicate version %v detected:\n%v\n%v", ms[i].Version, ms[i].Source, ms[j].Source)) log.Fatalf("goose: duplicate version %v detected:\n%v\n%v", ms[i].Version, ms[i].Source, ms[j].Source)
} }
return ms[i].Version < ms[j].Version return ms[i].Version < ms[j].Version
} }
@ -259,7 +259,7 @@ func EnsureDBVersion(db *sql.DB) (int64, error) {
toSkip = append(toSkip, row.VersionId) toSkip = append(toSkip, row.VersionId)
} }
panic("failure in EnsureDBVersion()") panic("unreachable")
} }
// Create the goose_db_version table // Create the goose_db_version table

View File

@ -10,9 +10,7 @@ import (
func Status(db *sql.DB, dir string) error { func Status(db *sql.DB, dir string) error {
// collect all migrations // collect all migrations
min := int64(0) migrations, err := CollectMigrations(dir, minVersion, maxVersion)
max := int64((1 << 63) - 1)
migrations, err := CollectMigrations(dir, min, max)
if err != nil { if err != nil {
return err return err
} }