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

lib/sqlalchemy/sql/operators.py

index 3549fa10cf948a64ab412596c50f23cf2a9aea7d..51f162c98e53904935c3aa8d9d759d545325ac93 100644 (file)
@@ -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)