]> 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:20:22 +0000 (11:20 -0400)
commit8cf73b322a320c16b574a4d3d5e93a9dd3648321
treeba254f89ca073c6759c820b0ac98e5f76ed99713
parente5a81c980b5c07f7d980b90149c6b18ea16f6f4b
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
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