]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Enable include_table for ON CONFLICT whereclauses
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 28 Sep 2016 22:01:57 +0000 (18:01 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 28 Sep 2016 22:08:30 +0000 (18:08 -0400)
commit800a18aff2927433163afec3b7a4671eabe1c2e3
treed96a7cda2bf6d576a526d52c70c8a63e6b1a0e56
parentf09056323e2c7b51ecdf02f8c31e7529382ed0f8
Enable include_table for ON CONFLICT whereclauses

Fixed issue in new PG "on conflict" construct where columns including
those of the "excluded" namespace would not be table-qualified
in the WHERE clauses in the statement.

Change-Id: Idfefc93e7e7b0d84805e23d5436d822d606f6a0a
Fixes: #3807
doc/build/changelog/changelog_11.rst
lib/sqlalchemy/dialects/postgresql/base.py
test/dialect/postgresql/test_compiler.py