]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Ensure (+) is rendered for all right-hand members
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 13 Sep 2017 18:53:29 +0000 (14:53 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 13 Sep 2017 18:53:29 +0000 (14:53 -0400)
commit01ed5c4009ce77876345107b3f8385caa93edf84
treef99ccc94c33fd2cad0685d4cc4310f08f42a4e7a
parent31f80b9eaeb3c3435b7f6679b41e434478b1d11c
Ensure (+) is rendered for all right-hand members

Fixed bug where Oracle 8 "non ansi" join mode would not add the
``(+)`` operator to expressions that used an operator other than the
``=`` operator.  The ``(+)`` needs to be on all columns that are part
of the right-hand side.

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