diff options
Diffstat (limited to 'lib/sqlalchemy/sql/_typing.py')
-rw-r--r-- | lib/sqlalchemy/sql/_typing.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/_typing.py b/lib/sqlalchemy/sql/_typing.py index 9e83c3f42..513ce78d4 100644 --- a/lib/sqlalchemy/sql/_typing.py +++ b/lib/sqlalchemy/sql/_typing.py @@ -186,8 +186,11 @@ typically represent a single SQL column expression, not a set of columns the way a table or ORM entity does. This includes ColumnElement, or ORM-mapped attributes that will have a -`__clause_element__()` method, it also has the ExpressionElementRole +``__clause_element__()`` method, it also has the ExpressionElementRole overall which brings in the TextClause object also. + +.. versionadded:: 2.0.13 + """ _ColumnExpressionOrLiteralArgument = Union[Any, _ColumnExpressionArgument[_T]] |