summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql/operators.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2015-03-14 10:17:12 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2015-03-14 10:17:12 -0400
commit3f23e65dabab7ef4c7cf305a9e07e6cb05aba801 (patch)
treee6a429c082cd8a58acc7f5a81f66176f5f77c273 /lib/sqlalchemy/sql/operators.py
parent175e5c97a7f20d774e27fe66a141a12f341be9ad (diff)
downloadsqlalchemy-3f23e65dabab7ef4c7cf305a9e07e6cb05aba801.tar.gz
- remove now-misleading comment that SQLite doesn't support MATCH,
since they've apparently added something for it
Diffstat (limited to 'lib/sqlalchemy/sql/operators.py')
-rw-r--r--lib/sqlalchemy/sql/operators.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/sqlalchemy/sql/operators.py b/lib/sqlalchemy/sql/operators.py
index 3549fa10c..51f162c98 100644
--- a/lib/sqlalchemy/sql/operators.py
+++ b/lib/sqlalchemy/sql/operators.py
@@ -532,8 +532,10 @@ class ColumnOperators(Operators):
* Postgresql - renders ``x @@ to_tsquery(y)``
* MySQL - renders ``MATCH (x) AGAINST (y IN BOOLEAN MODE)``
* Oracle - renders ``CONTAINS(x, y)``
- * other backends may provide special implementations;
- some backends such as SQLite have no support.
+ * other backends may provide special implementations.
+ * Backends without any special implementation will emit
+ the operator as "MATCH". This is compatible with SQlite, for
+ example.
"""
return self.operate(match_op, other, **kwargs)