mirror of https://github.com/pressly/goose.git
results: don't bother counting the number of sql statements. we don't have a good way of tracking it for go migrations, and it's not particularly helpful either
parent
0b250b8511
commit
77a0382914
|
@ -70,23 +70,22 @@ func runMigrations(conf *DBConf, migrationsDir string, target int64) {
|
||||||
|
|
||||||
for _, v := range mm.Versions {
|
for _, v := range mm.Versions {
|
||||||
|
|
||||||
var numStatements int
|
|
||||||
var e error
|
var e error
|
||||||
|
|
||||||
filepath := mm.Migrations[v].Source
|
filepath := mm.Migrations[v].Source
|
||||||
|
|
||||||
switch path.Ext(filepath) {
|
switch path.Ext(filepath) {
|
||||||
case ".go":
|
case ".go":
|
||||||
numStatements, e = runGoMigration(conf, filepath, v, mm.Direction)
|
e = runGoMigration(conf, filepath, v, mm.Direction)
|
||||||
case ".sql":
|
case ".sql":
|
||||||
numStatements, e = runSQLMigration(db, filepath, v, mm.Direction)
|
e = runSQLMigration(db, filepath, v, mm.Direction)
|
||||||
}
|
}
|
||||||
|
|
||||||
if e != nil {
|
if e != nil {
|
||||||
log.Fatalf("FAIL %v, quitting migration", e)
|
log.Fatalf("FAIL %v, quitting migration", e)
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt.Printf("OK %s (%d statements)\n", path.Base(filepath), numStatements)
|
fmt.Println("OK ", path.Base(filepath))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -41,7 +41,7 @@ func directionStr(direction bool) string {
|
||||||
// original .go migration, and execute it via `go run` along
|
// original .go migration, and execute it via `go run` along
|
||||||
// with a main() of our own creation.
|
// with a main() of our own creation.
|
||||||
//
|
//
|
||||||
func runGoMigration(conf *DBConf, path string, version int64, direction bool) (int, error) {
|
func runGoMigration(conf *DBConf, path string, version int64, direction bool) error {
|
||||||
|
|
||||||
// everything gets written to a temp dir, and zapped afterwards
|
// everything gets written to a temp dir, and zapped afterwards
|
||||||
d, e := ioutil.TempDir("", "goose")
|
d, e := ioutil.TempDir("", "goose")
|
||||||
|
@ -73,7 +73,7 @@ func runGoMigration(conf *DBConf, path string, version int64, direction bool) (i
|
||||||
log.Fatal("`go run` failed: ", e)
|
log.Fatal("`go run` failed: ", e)
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0, nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
|
@ -17,7 +17,7 @@ import (
|
||||||
//
|
//
|
||||||
// All statements following an Up or Down directive are grouped together
|
// All statements following an Up or Down directive are grouped together
|
||||||
// until another direction directive is found.
|
// until another direction directive is found.
|
||||||
func runSQLMigration(db *sql.DB, script string, v int64, direction bool) (count int, err error) {
|
func runSQLMigration(db *sql.DB, script string, v int64, direction bool) error {
|
||||||
|
|
||||||
txn, err := db.Begin()
|
txn, err := db.Begin()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -32,7 +32,6 @@ func runSQLMigration(db *sql.DB, script string, v int64, direction bool) (count
|
||||||
// ensure we don't apply a query until we're sure it's going
|
// ensure we don't apply a query until we're sure it's going
|
||||||
// in the direction we're interested in
|
// in the direction we're interested in
|
||||||
directionIsActive := false
|
directionIsActive := false
|
||||||
count = 0
|
|
||||||
|
|
||||||
// find each statement, checking annotations for up/down direction
|
// find each statement, checking annotations for up/down direction
|
||||||
// and execute each of them in the current transaction
|
// and execute each of them in the current transaction
|
||||||
|
@ -55,17 +54,15 @@ func runSQLMigration(db *sql.DB, script string, v int64, direction bool) (count
|
||||||
if _, err = txn.Exec(query); err != nil {
|
if _, err = txn.Exec(query); err != nil {
|
||||||
txn.Rollback()
|
txn.Rollback()
|
||||||
log.Fatalf("FAIL %s (%v), quitting migration.", path.Base(script), err)
|
log.Fatalf("FAIL %s (%v), quitting migration.", path.Base(script), err)
|
||||||
return count, err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
count++
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if err = finalizeMigration(txn, direction, v); err != nil {
|
if err = finalizeMigration(txn, direction, v); err != nil {
|
||||||
log.Fatalf("error finalizing migration %s, quitting. (%v)", path.Base(script), err)
|
log.Fatalf("error finalizing migration %s, quitting. (%v)", path.Base(script), err)
|
||||||
}
|
}
|
||||||
|
|
||||||
return count, nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update the version table for the given migration,
|
// Update the version table for the given migration,
|
||||||
|
|
Loading…
Reference in New Issue