summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql/elements.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2022-06-04 15:53:34 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2022-06-07 12:25:19 -0400
commit1c99edf1b988f55411bd8bef917b9664a39d218b (patch)
tree44789fc7380c469738ec15627e872bf3440e2a1b /lib/sqlalchemy/sql/elements.py
parentcdafd5bb865e867660238b61e727d33ef6f42b37 (diff)
downloadsqlalchemy-1c99edf1b988f55411bd8bef917b9664a39d218b.tar.gz
migrate labels to new tutorial
other org changes and some sections from old tutorial ported to new tutorial. Change-Id: Ic0fba60ec82fff481890887beef9ed0fa271875a
Diffstat (limited to 'lib/sqlalchemy/sql/elements.py')
-rw-r--r--lib/sqlalchemy/sql/elements.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sqlalchemy/sql/elements.py b/lib/sqlalchemy/sql/elements.py
index 6032253c2..625e1d94b 100644
--- a/lib/sqlalchemy/sql/elements.py
+++ b/lib/sqlalchemy/sql/elements.py
@@ -190,7 +190,7 @@ def literal_column(
:func:`_expression.text`
- :ref:`sqlexpression_literal_column`
+ :ref:`tutorial_select_arbitrary_text`
"""
return ColumnClause(text, type_=type_, is_literal=True)
@@ -1568,7 +1568,7 @@ class ColumnElement(
.. seealso::
- :ref:`coretutorial_casts`
+ :ref:`tutorial_casts`
:func:`_expression.cast`
@@ -3198,7 +3198,7 @@ class Cast(WrapsColumnExpression[_T]):
.. seealso::
- :ref:`coretutorial_casts`
+ :ref:`tutorial_casts`
:func:`.cast`