diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-07-29 03:09:49 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-07-29 03:09:49 +0000 |
commit | c838a981021b83f5690234b1d55513417306ac61 (patch) | |
tree | dce497265c82cd64ef2671bfe3f5ac5314567ab7 /lib/sqlalchemy/sql.py | |
parent | 9b1ccb29d41e17e386e7811fbfb9ed4308324805 (diff) | |
download | sqlalchemy-c838a981021b83f5690234b1d55513417306ac61.tar.gz |
fixed 'column_literal' to 'literal_column' [ticket:626]
Diffstat (limited to 'lib/sqlalchemy/sql.py')
-rw-r--r-- | lib/sqlalchemy/sql.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/sql.py b/lib/sqlalchemy/sql.py index 0cc7d11ed..e09dcca8d 100644 --- a/lib/sqlalchemy/sql.py +++ b/lib/sqlalchemy/sql.py @@ -2615,7 +2615,7 @@ class _ColumnClause(ColumnElement): statements, but also any arbitrary text. May or may not be bound to an underlying ``Selectable``. ``_ColumnClause`` is usually created publically via the ``column()`` function or the - ``column_literal()`` function. + ``literal_column()`` function. text the text of the element. @@ -2635,7 +2635,7 @@ class _ColumnClause(ColumnElement): is_literal if True, the ``_ColumnClause`` is assumed to be an exact expression that will be delivered to the output with no quoting rules applied - regardless of case sensitive settings. the ``column_literal()`` function is + regardless of case sensitive settings. the ``literal_column()`` function is usually used to create such a ``_ColumnClause``. """ |