]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Fix rendering of order in sequences and identity columns.
authorFederico Caselli <cfederico87@gmail.com>
Wed, 9 Aug 2023 21:27:21 +0000 (23:27 +0200)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 17 Aug 2023 15:18:02 +0000 (11:18 -0400)
commit0cc93aa994eee8dddef82b26f0ddf2f3541cea77
treec572c830602b7d4abcf716f51fad5e5fe4fb5e17
parent1cba74c47feb30875ed8ca5891b95c789e2b186f
Fix rendering of order in sequences and identity columns.

Fixes the rendering of the Oracle only ``order`` attribute in
Sequence and Identity that was passed also when rendering
the DDL in PostgreSQL.

Fixes: #10207
Change-Id: I5b918eab38ba68fa10a213a79e2bd0cc48401a02
(cherry picked from commit 5615ab52c81e2343330069f91ec3544840519956)
doc/build/changelog/unreleased_14/10207.rst [new file with mode: 0644]
lib/sqlalchemy/dialects/oracle/base.py
lib/sqlalchemy/sql/compiler.py
test/dialect/oracle/test_compiler.py
test/sql/test_identity_column.py
test/sql/test_sequences.py