]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- remove now-misleading comment that SQLite doesn't support MATCH,
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 14 Mar 2015 14:17:12 +0000 (10:17 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 14 Mar 2015 14:17:34 +0000 (10:17 -0400)
since they've apparently added something for it

lib/sqlalchemy/sql/operators.py

index 1a220374a4d3d419919ac92df3401667324b4725..9ee06c3f3fe1946b2eab4174467eddc1c1ba6c10 100644 (file)
@@ -529,8 +529,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)