diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-11-21 13:30:32 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-11-21 13:30:32 -0500 |
commit | 2aa00c49d7a1a783ff50832f2de7760bfaaccf6d (patch) | |
tree | 8cee77853374a0570c562e1b5510bb55da3290ce /lib/sqlalchemy/sql/selectable.py | |
parent | 42fd77a4bfb8c5a1c02c89a17481a90cd039f10e (diff) | |
download | sqlalchemy-2aa00c49d7a1a783ff50832f2de7760bfaaccf6d.tar.gz |
- Fixed bug which prevented the ``serializer`` extension from working
correctly with table or column names that contain non-ASCII
characters. [ticket:2869]
Diffstat (limited to 'lib/sqlalchemy/sql/selectable.py')
-rw-r--r-- | lib/sqlalchemy/sql/selectable.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/selectable.py b/lib/sqlalchemy/sql/selectable.py index 046840110..708103fc6 100644 --- a/lib/sqlalchemy/sql/selectable.py +++ b/lib/sqlalchemy/sql/selectable.py @@ -246,7 +246,7 @@ class FromClause(Selectable): :param column: the target :class:`.ColumnElement` to be matched :param require_embedded: only return corresponding columns for - the given :class:`.ColumnElement`, if the given :class:`.ColumnElement` + the given :class:`.ColumnElement`, if the given :class:`.ColumnElement` is actually present within a sub-element of this :class:`.FromClause`. Normally the column will match if it merely shares a common ancestor with one of the exported |