]> 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:43 +0000 (10:17 -0400)
since they've apparently added something for it

lib/sqlalchemy/sql/operators.py

index e043c2a7012894d77d896a708902a5d525df8891..2775205ca65e62f8e15ff8153c30fc9180d00d84 100644 (file)
@@ -512,8 +512,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)