diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-10-12 20:04:55 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-10-12 20:13:27 -0400 |
| commit | d8c17e2a6f41d0aad331678e916f1aa4f07e4f7b (patch) | |
| tree | a8390553ad61d5da567dd5f03515b614da2f88b7 /doc | |
| parent | e488bb47e4bd21ff0a09ce23e1adf00ba64d5d57 (diff) | |
| download | sqlalchemy-d8c17e2a6f41d0aad331678e916f1aa4f07e4f7b.tar.gz | |
- Fixed bug in default compiler plus those of postgresql, mysql, and
mssql to ensure that any literal SQL expression values are
rendered directly as literals, instead of as bound parameters,
within a CREATE INDEX statement. [ticket:2742]
- don't need expression_as_ddl(); literal_binds and include_table
take care of this functionality.
Conflicts:
lib/sqlalchemy/sql/util.py
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/build/changelog/changelog_08.rst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_08.rst b/doc/build/changelog/changelog_08.rst index 0937aaad5..3d2179f5a 100644 --- a/doc/build/changelog/changelog_08.rst +++ b/doc/build/changelog/changelog_08.rst @@ -12,6 +12,16 @@ .. change:: :tags: bug, sql + :tickets: 2742 + :versions: 0.9.0 + + Fixed bug in default compiler plus those of postgresql, mysql, and + mssql to ensure that any literal SQL expression values are + rendered directly as literals, instead of as bound parameters, + within a CREATE INDEX statement. + + .. change:: + :tags: bug, sql :tickets: 2815 :versions: 0.9.0 |
