Use db.Conn to fix postgres lock/unlock

This commit is contained in:
Teddy Schmitz 2017-10-27 10:56:10 +08:00
parent 69472d5f5c
commit 155a8b241c
3 changed files with 62 additions and 14 deletions

View File

@ -5,6 +5,8 @@ go:
- 1.7 - 1.7
- 1.8 - 1.8
- 1.9 - 1.9
- 1.9.1
- 1.9.2
env: env:
- MIGRATE_TEST_CONTAINER_BOOT_DELAY=10 - MIGRATE_TEST_CONTAINER_BOOT_DELAY=10
@ -38,7 +40,7 @@ deploy:
secure: EFow50BI448HVb/uQ1Kk2Kq0xzmwIYq3V67YyymXIuqSCodvXEsMiBPUoLrxEknpPEIc67LEQTNdfHBgvyHk6oRINWAfie+7pr5tKrpOTF9ghyxoN1PlO8WKQCqwCvGMBCnc5ur5rvzp0bqfpV2rs5q9/nngy3kBuEvs12V7iho= secure: EFow50BI448HVb/uQ1Kk2Kq0xzmwIYq3V67YyymXIuqSCodvXEsMiBPUoLrxEknpPEIc67LEQTNdfHBgvyHk6oRINWAfie+7pr5tKrpOTF9ghyxoN1PlO8WKQCqwCvGMBCnc5ur5rvzp0bqfpV2rs5q9/nngy3kBuEvs12V7iho=
skip_cleanup: true skip_cleanup: true
on: on:
go: 1.8 go: 1.9
repo: mattes/migrate repo: mattes/migrate
tags: true tags: true
file: file:
@ -56,7 +58,7 @@ deploy:
package_glob: '*.deb' package_glob: '*.deb'
skip_cleanup: true skip_cleanup: true
on: on:
go: 1.8 go: 1.9
repo: mattes/migrate repo: mattes/migrate
tags: true tags: true

View File

@ -1,3 +1,4 @@
// +build go1.9
package postgres package postgres
import ( import (
@ -10,6 +11,7 @@ import (
"github.com/lib/pq" "github.com/lib/pq"
"github.com/mattes/migrate" "github.com/mattes/migrate"
"github.com/mattes/migrate/database" "github.com/mattes/migrate/database"
"context"
) )
func init() { func init() {
@ -33,7 +35,8 @@ type Config struct {
} }
type Postgres struct { type Postgres struct {
db *sql.DB // Locking and unlocking need to use the same connection
db *sql.Conn
isLocked bool isLocked bool
// Open and WithInstance need to garantuee that config is never nil // Open and WithInstance need to garantuee that config is never nil
@ -65,8 +68,14 @@ func WithInstance(instance *sql.DB, config *Config) (database.Driver, error) {
config.MigrationsTable = DefaultMigrationsTable config.MigrationsTable = DefaultMigrationsTable
} }
conn, err := instance.Conn(context.Background())
if err != nil {
return nil, err
}
px := &Postgres{ px := &Postgres{
db: instance, db: conn,
config: config, config: config,
} }
@ -123,7 +132,7 @@ func (p *Postgres) Lock() error {
// or return false if the lock cannot be acquired immediately. // or return false if the lock cannot be acquired immediately.
query := `SELECT pg_try_advisory_lock($1)` query := `SELECT pg_try_advisory_lock($1)`
var success bool var success bool
if err := p.db.QueryRow(query, aid).Scan(&success); err != nil { if err := p.db.QueryRowContext(context.Background(), query, aid).Scan(&success); err != nil {
return &database.Error{OrigErr: err, Err: "try lock failed", Query: []byte(query)} return &database.Error{OrigErr: err, Err: "try lock failed", Query: []byte(query)}
} }
@ -146,7 +155,7 @@ func (p *Postgres) Unlock() error {
} }
query := `SELECT pg_advisory_unlock($1)` query := `SELECT pg_advisory_unlock($1)`
if _, err := p.db.Exec(query, aid); err != nil { if _, err := p.db.ExecContext(context.Background(), query, aid); err != nil {
return &database.Error{OrigErr: err, Query: []byte(query)} return &database.Error{OrigErr: err, Query: []byte(query)}
} }
p.isLocked = false p.isLocked = false
@ -161,7 +170,7 @@ func (p *Postgres) Run(migration io.Reader) error {
// run migration // run migration
query := string(migr[:]) query := string(migr[:])
if _, err := p.db.Exec(query); err != nil { if _, err := p.db.ExecContext(context.Background(), query); err != nil {
// TODO: cast to postgress error and get line number // TODO: cast to postgress error and get line number
return database.Error{OrigErr: err, Err: "migration failed", Query: migr} return database.Error{OrigErr: err, Err: "migration failed", Query: migr}
} }
@ -170,7 +179,7 @@ func (p *Postgres) Run(migration io.Reader) error {
} }
func (p *Postgres) SetVersion(version int, dirty bool) error { func (p *Postgres) SetVersion(version int, dirty bool) error {
tx, err := p.db.Begin() tx, err := p.db.BeginTx(context.Background(), &sql.TxOptions{})
if err != nil { if err != nil {
return &database.Error{OrigErr: err, Err: "transaction start failed"} return &database.Error{OrigErr: err, Err: "transaction start failed"}
} }
@ -198,7 +207,7 @@ func (p *Postgres) SetVersion(version int, dirty bool) error {
func (p *Postgres) Version() (version int, dirty bool, err error) { func (p *Postgres) Version() (version int, dirty bool, err error) {
query := `SELECT version, dirty FROM "` + p.config.MigrationsTable + `" LIMIT 1` query := `SELECT version, dirty FROM "` + p.config.MigrationsTable + `" LIMIT 1`
err = p.db.QueryRow(query).Scan(&version, &dirty) err = p.db.QueryRowContext(context.Background(),query).Scan(&version, &dirty)
switch { switch {
case err == sql.ErrNoRows: case err == sql.ErrNoRows:
return database.NilVersion, false, nil return database.NilVersion, false, nil
@ -219,7 +228,7 @@ func (p *Postgres) Version() (version int, dirty bool, err error) {
func (p *Postgres) Drop() error { func (p *Postgres) Drop() error {
// select all tables in current schema // select all tables in current schema
query := `SELECT table_name FROM information_schema.tables WHERE table_schema=(SELECT current_schema())` query := `SELECT table_name FROM information_schema.tables WHERE table_schema=(SELECT current_schema())`
tables, err := p.db.Query(query) tables, err := p.db.QueryContext(context.Background(),query)
if err != nil { if err != nil {
return &database.Error{OrigErr: err, Query: []byte(query)} return &database.Error{OrigErr: err, Query: []byte(query)}
} }
@ -241,7 +250,7 @@ func (p *Postgres) Drop() error {
// delete one by one ... // delete one by one ...
for _, t := range tableNames { for _, t := range tableNames {
query = `DROP TABLE IF EXISTS ` + t + ` CASCADE` query = `DROP TABLE IF EXISTS ` + t + ` CASCADE`
if _, err := p.db.Exec(query); err != nil { if _, err := p.db.ExecContext(context.Background(), query); err != nil {
return &database.Error{OrigErr: err, Query: []byte(query)} return &database.Error{OrigErr: err, Query: []byte(query)}
} }
} }
@ -257,7 +266,7 @@ func (p *Postgres) ensureVersionTable() error {
// check if migration table exists // check if migration table exists
var count int var count int
query := `SELECT COUNT(1) FROM information_schema.tables WHERE table_name = $1 AND table_schema = (SELECT current_schema()) LIMIT 1` query := `SELECT COUNT(1) FROM information_schema.tables WHERE table_name = $1 AND table_schema = (SELECT current_schema()) LIMIT 1`
if err := p.db.QueryRow(query, p.config.MigrationsTable).Scan(&count); err != nil { if err := p.db.QueryRowContext(context.Background(),query, p.config.MigrationsTable).Scan(&count); err != nil {
return &database.Error{OrigErr: err, Query: []byte(query)} return &database.Error{OrigErr: err, Query: []byte(query)}
} }
if count == 1 { if count == 1 {
@ -266,7 +275,7 @@ func (p *Postgres) ensureVersionTable() error {
// if not, create the empty migration table // if not, create the empty migration table
query = `CREATE TABLE "` + p.config.MigrationsTable + `" (version bigint not null primary key, dirty boolean not null)` query = `CREATE TABLE "` + p.config.MigrationsTable + `" (version bigint not null primary key, dirty boolean not null)`
if _, err := p.db.Exec(query); err != nil { if _, err := p.db.ExecContext(context.Background(),query); err != nil {
return &database.Error{OrigErr: err, Query: []byte(query)} return &database.Error{OrigErr: err, Query: []byte(query)}
} }
return nil return nil

View File

@ -12,6 +12,7 @@ import (
"github.com/lib/pq" "github.com/lib/pq"
dt "github.com/mattes/migrate/database/testing" dt "github.com/mattes/migrate/database/testing"
mt "github.com/mattes/migrate/testing" mt "github.com/mattes/migrate/testing"
"context"
) )
var versions = []mt.Version{ var versions = []mt.Version{
@ -69,7 +70,7 @@ func TestMultiStatement(t *testing.T) {
// make sure second table exists // make sure second table exists
var exists bool var exists bool
if err := d.(*Postgres).db.QueryRow("SELECT EXISTS (SELECT 1 FROM information_schema.tables WHERE table_name = 'bar' AND table_schema = (SELECT current_schema()))").Scan(&exists); err != nil { if err := d.(*Postgres).db.QueryRowContext(context.Background(), "SELECT EXISTS (SELECT 1 FROM information_schema.tables WHERE table_name = 'bar' AND table_schema = (SELECT current_schema()))").Scan(&exists); err != nil {
t.Fatal(err) t.Fatal(err)
} }
if !exists { if !exists {
@ -148,3 +149,39 @@ func TestWithSchema(t *testing.T) {
func TestWithInstance(t *testing.T) { func TestWithInstance(t *testing.T) {
} }
func TestPostgres_Lock(t *testing.T) {
mt.ParallelTest(t, versions, isReady,
func(t *testing.T, i mt.Instance) {
p := &Postgres{}
addr := fmt.Sprintf("postgres://postgres@%v:%v/postgres?sslmode=disable", i.Host(), i.Port())
d, err := p.Open(addr)
if err != nil {
t.Fatalf("%v", err)
}
dt.Test(t, d, []byte("SELECT 1"))
ps := d.(*Postgres)
err = ps.Lock()
if err != nil {
t.Fatal(err)
}
err = ps.Unlock()
if err != nil {
t.Fatal(err)
}
err = ps.Lock()
if err != nil {
t.Fatal(err)
}
err = ps.Unlock()
if err != nil {
t.Fatal(err)
}
})
}