]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Propagate **kw in postgresql distinct on compilation
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 22 Aug 2018 21:18:48 +0000 (17:18 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 22 Aug 2018 21:19:45 +0000 (17:19 -0400)
commit469931514a1517dde82ba56f780c3007c66d5943
tree436a4138904e98f7a7dfb1297b582357784af1fa
parent52a3f5b7635583ae6feb084b1db654b9c65caec2
Propagate **kw in postgresql distinct on compilation

Fixed bug in PostgreSQL dialect where compiler keyword arguments such as
``literal_binds=True`` were not being propagated to a DISTINCT ON
expression.

Fixes: #4325
Change-Id: I9949387dceb7fabe889799f42e92423572368b29
doc/build/changelog/unreleased_12/4325.rst [new file with mode: 0644]
lib/sqlalchemy/dialects/postgresql/base.py
test/dialect/postgresql/test_compiler.py