diff options
author | Erik Johnston <erikj@jki.re> | 2017-03-31 14:14:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-31 14:14:30 +0100 |
commit | 2dc57e74136878a07e1c489c8504f9f614299e8e (patch) | |
tree | 0ac6cbcf2bc9e950ff6914b493b30493894f61b5 | |
parent | Merge pull request #1961 from benhylau/patch-1 (diff) | |
parent | Don't assume postgres tables are in the public schema during db port (diff) | |
download | synapse-2dc57e74136878a07e1c489c8504f9f614299e8e.tar.xz |
Merge pull request #2024 from jerrykan/db_port_schema
Don't assume postgres tables are in the public schema during db port
-rwxr-xr-x | scripts/synapse_port_db | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/synapse_port_db b/scripts/synapse_port_db index ea367a1281..2e5d666707 100755 --- a/scripts/synapse_port_db +++ b/scripts/synapse_port_db @@ -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", ) |