]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Fixed bug in default compiler plus those of postgresql, mysql, and
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 13 Oct 2013 00:04:55 +0000 (20:04 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 13 Oct 2013 00:13:27 +0000 (20:13 -0400)
commitd8c17e2a6f41d0aad331678e916f1aa4f07e4f7b
treea8390553ad61d5da567dd5f03515b614da2f88b7
parente488bb47e4bd21ff0a09ce23e1adf00ba64d5d57
- 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
doc/build/changelog/changelog_08.rst
lib/sqlalchemy/dialects/mssql/base.py
lib/sqlalchemy/dialects/mysql/base.py
lib/sqlalchemy/dialects/postgresql/base.py
lib/sqlalchemy/sql/compiler.py
lib/sqlalchemy/sql/util.py
test/dialect/mssql/test_compiler.py
test/dialect/mysql/test_compiler.py
test/dialect/postgresql/test_compiler.py
test/dialect/test_oracle.py
test/sql/test_constraints.py