summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/databases/postgres.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/databases/postgres.py')
-rw-r--r--lib/sqlalchemy/databases/postgres.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/sqlalchemy/databases/postgres.py b/lib/sqlalchemy/databases/postgres.py
index decccba58..8368c8931 100644
--- a/lib/sqlalchemy/databases/postgres.py
+++ b/lib/sqlalchemy/databases/postgres.py
@@ -225,6 +225,7 @@ class PGDialect(ansisql.ANSIDialect):
opts['port'] = int(opts['port'])
else:
opts['port'] = str(opts['port'])
+ opts.update(url.query)
return ([], opts)
def create_execution_context(self):