diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-09-02 11:48:15 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-09-02 11:48:15 -0400 |
| commit | 9a6947427af58eeb6ebf09ec6de2a1b7ec12d828 (patch) | |
| tree | 963379c329e48e7dfb82ef49a3a24bc514ffb254 /doc/build | |
| parent | f6022839c29f7f96cb9d279aaf2e44e81cafb661 (diff) | |
| download | sqlalchemy-9a6947427af58eeb6ebf09ec6de2a1b7ec12d828.tar.gz | |
Allow stringify compiler to render unnamed column
Stringify of expression with unnamed :class:`.Column` objects, as
occurs in lots of situations including ORM error reporting,
will now render the name in string context as "<name unknown>"
rather than raising a compile error.
Change-Id: I76f637c5eb4cfdb1b526964cb001565b97e296da
Fixes: #3789
Diffstat (limited to 'doc/build')
| -rw-r--r-- | doc/build/changelog/changelog_11.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_11.rst b/doc/build/changelog/changelog_11.rst index 88f1ebb24..c038966c5 100644 --- a/doc/build/changelog/changelog_11.rst +++ b/doc/build/changelog/changelog_11.rst @@ -23,6 +23,15 @@ .. change:: :tags: bug, sql + :tickets: 3789 + + Stringify of expression with unnamed :class:`.Column` objects, as + occurs in lots of situations including ORM error reporting, + will now render the name in string context as "<name unknown>" + rather than raising a compile error. + + .. change:: + :tags: bug, sql :tickets: 3786 Raise a more descriptive exception / message when ClauseElement |
