0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-09 12:48:49 +02:00

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:
Erik Johnston 2017-03-31 14:14:30 +01:00 committed by GitHub
commit 2dc57e7413

View file

@ -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",
)