diff options
author | Tony Locke <tlocke@tlocke.org.uk> | 2014-08-02 16:19:46 +0100 |
---|---|---|
committer | Tony Locke <tlocke@tlocke.org.uk> | 2014-08-02 16:19:46 +0100 |
commit | 0dbe9d9aaf22d69e44c486472ff3b412a96cf216 (patch) | |
tree | 4066b41ecf82a134bd6c27596d69b8f90f8c782e | |
parent | ed1bbbed272d6413561a2b5a29873f1021890c0d (diff) | |
download | sqlalchemy-pr/125.tar.gz |
pg8000 now supports sane_multi_rowcountpr/125
From pg8000-1.9.14 sane_multi_rowcount is supported so this commit
updates the dialect accordingly.
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/pg8000.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/pg8000.py b/lib/sqlalchemy/dialects/postgresql/pg8000.py index 2793b048d..909b41b82 100644 --- a/lib/sqlalchemy/dialects/postgresql/pg8000.py +++ b/lib/sqlalchemy/dialects/postgresql/pg8000.py @@ -119,7 +119,7 @@ class PGDialect_pg8000(PGDialect): supports_unicode_binds = True default_paramstyle = 'format' - supports_sane_multi_rowcount = False + supports_sane_multi_rowcount = True execution_ctx_cls = PGExecutionContext_pg8000 statement_compiler = PGCompiler_pg8000 preparer = PGIdentifierPreparer_pg8000 |