From 3f23e65dabab7ef4c7cf305a9e07e6cb05aba801 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sat, 14 Mar 2015 10:17:12 -0400 Subject: - remove now-misleading comment that SQLite doesn't support MATCH, since they've apparently added something for it --- lib/sqlalchemy/sql/operators.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib/sqlalchemy/sql/operators.py') 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) -- cgit v1.2.1