summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql/operators.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2017-01-16 16:27:48 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2017-01-16 16:27:48 -0500
commit46828cc157a48d73352a3a910798b705aa23f0d5 (patch)
tree8badf3aa618efd12002d7bec7334de493b49ed52 /lib/sqlalchemy/sql/operators.py
parentd8198c2d8779d52a94dc53b0a1582279d6d58fef (diff)
downloadsqlalchemy-46828cc157a48d73352a3a910798b705aa23f0d5.tar.gz
- correctly document LIKE / ILIKE, fixes #3890
Change-Id: Ie59e61f53d7c59a4777ab9e6e75a43c71d67523b
Diffstat (limited to 'lib/sqlalchemy/sql/operators.py')
-rw-r--r--lib/sqlalchemy/sql/operators.py22
1 files changed, 16 insertions, 6 deletions
diff --git a/lib/sqlalchemy/sql/operators.py b/lib/sqlalchemy/sql/operators.py
index 49744568a..d88339299 100644
--- a/lib/sqlalchemy/sql/operators.py
+++ b/lib/sqlalchemy/sql/operators.py
@@ -398,13 +398,16 @@ class ColumnOperators(Operators):
return self.operate(concat_op, other)
def like(self, other, escape=None):
- """Implement the ``like`` operator.
+ r"""Implement the ``like`` operator.
- In a column context, produces the clause ``a LIKE other``.
+ In a column context, produces the expression::
+
+ a LIKE other
E.g.::
- select([sometable]).where(sometable.c.column.like("%foobar%"))
+ stmt = select([sometable]).\
+ where(sometable.c.column.like("%foobar%"))
:param other: expression to be compared
:param escape: optional escape character, renders the ``ESCAPE``
@@ -420,13 +423,20 @@ class ColumnOperators(Operators):
return self.operate(like_op, other, escape=escape)
def ilike(self, other, escape=None):
- """Implement the ``ilike`` operator.
+ r"""Implement the ``ilike`` operator, e.g. case insensitive LIKE.
+
+ In a column context, produces an expression either of the form::
+
+ lower(a) LIKE lower(other)
+
+ Or on backends that support the ILIKE operator::
- In a column context, produces the clause ``a ILIKE other``.
+ a ILIKE other
E.g.::
- select([sometable]).where(sometable.c.column.ilike("%foobar%"))
+ stmt = select([sometable]).\
+ where(sometable.c.column.ilike("%foobar%"))
:param other: expression to be compared
:param escape: optional escape character, renders the ``ESCAPE``