Merge pull request #2024 from jerrykan/db_port_schema
Don't assume postgres tables are in the public schema during db port
This commit is contained in:
commit
2dc57e7413
|
@ -447,9 +447,7 @@ class Porter(object):
|
|||
|
||||
postgres_tables = yield self.postgres_store._simple_select_onecol(
|
||||
table="information_schema.tables",
|
||||
keyvalues={
|
||||
"table_schema": "public",
|
||||
},
|
||||
keyvalues={},
|
||||
retcol="distinct table_name",
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue