]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- calling str() on a core sql construct has been made more "friendly",
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 19 Jan 2016 21:47:16 +0000 (16:47 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 19 Jan 2016 21:47:16 +0000 (16:47 -0500)
commit39837686b068a6e7016169f31a96a058546e4bdd
tree736084283457941f22601f3afc4b58dadcd95edf
parentb7bc704f3d05bed8d0771cbff65adcdb7b49f796
- calling str() on a core sql construct has been made more "friendly",
when the construct contains non-standard sql elements such as
returning, array index operations, or dialect-specific or custom
datatypes.  a string is now returned in these cases rendering an
approximation of the construct (typically the postgresql-style
version of it) rather than raising an error. fixes #3631
- add within_group to top-level imports
- add eq_ignore_whitespace to sqlalchemy.testing imports
doc/build/changelog/changelog_11.rst
doc/build/changelog/migration_11.rst
lib/sqlalchemy/__init__.py
lib/sqlalchemy/engine/default.py
lib/sqlalchemy/sql/__init__.py
lib/sqlalchemy/sql/compiler.py
lib/sqlalchemy/sql/elements.py
lib/sqlalchemy/testing/__init__.py
test/sql/test_compiler.py
test/sql/test_metadata.py
test/sql/test_selectable.py