mirror of https://github.com/pressly/goose.git
fix: use current_schema for postgres TableExists, if schema is unspecified (#884)
parent
779024deaf
commit
4337eb2257
|
@ -50,7 +50,7 @@ func (p *Postgres) TableExists(tableName string) string {
|
|||
q := `SELECT EXISTS ( SELECT 1 FROM pg_tables WHERE schemaname = '%s' AND tablename = '%s' )`
|
||||
return fmt.Sprintf(q, schemaName, tableName)
|
||||
}
|
||||
q := `SELECT EXISTS ( SELECT 1 FROM pg_tables WHERE tablename = '%s' )`
|
||||
q := `SELECT EXISTS ( SELECT 1 FROM pg_tables WHERE (current_schema() IS NULL OR schemaname = current_schema()) AND tablename = '%s' )`
|
||||
return fmt.Sprintf(q, tableName)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue