mirror of https://github.com/pressly/goose.git
Better version duplicate check
parent
6a2ef004b5
commit
96680a8221
24
goose.go
24
goose.go
|
@ -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 {
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue