]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Add support for CACHE and ORDER to sequences
authorDavid Moore <davidm@j5int.com>
Wed, 5 Jul 2017 19:06:49 +0000 (15:06 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 5 Jul 2017 20:21:44 +0000 (16:21 -0400)
commitfaa6609dac2ce6e55e0f690df3ba88c13133ec5c
treef89f6370f67acf35b8909bfc091bfa68c35e7e21
parentb7a51f3a9c90c577e315bc0c3881b4c7623450e2
Add support for CACHE and ORDER to sequences

Added new keywords :paramref:`.Sequence.cache` and
:paramref:`.Sequence.order` to :class:`.Sequence`, to allow rendering
of the CACHE parameter understood by Oracle and PostgreSQL, and the
ORDER parameter understood by Oracle.  Pull request
courtesy David Moore.

Change-Id: I082c3f8ef56ef89dbaad5da9d5695be5313b0614
Pull-request: https://bitbucket.org/zzzeek/sqlalchemy/pull-requests/96
doc/build/changelog/changelog_11.rst
lib/sqlalchemy/engine/interfaces.py
lib/sqlalchemy/sql/compiler.py
lib/sqlalchemy/sql/schema.py
test/sql/test_defaults.py