diff options
Diffstat (limited to 'lib/sqlalchemy/sql/_typing.py')
-rw-r--r-- | lib/sqlalchemy/sql/_typing.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/sqlalchemy/sql/_typing.py b/lib/sqlalchemy/sql/_typing.py index 1df530dbd..f49a6d3ec 100644 --- a/lib/sqlalchemy/sql/_typing.py +++ b/lib/sqlalchemy/sql/_typing.py @@ -162,6 +162,9 @@ overall which brings in the TextClause object also. """ +_ColumnExpressionOrLiteralArgument = Union[Any, _ColumnExpressionArgument[_T]] + + _InfoType = Dict[Any, Any] """the .info dictionary accepted and used throughout Core /ORM""" |