]> 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:04:55 +0000 (20:04 -0400)
commit9bc9d5c1068be878118202259add3c2e1bcec0cb
tree9e611c162b83debad6c70b5436c61630546c2872
parenteabf41b392ac042228765c9b95138522e44365e7
- 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.
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