diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2021-06-21 22:30:31 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@ci3.zzzcomputing.com> | 2021-06-21 22:30:31 +0000 |
| commit | 2f100a7d4bb143e1f8674a388d8d305be3051bd6 (patch) | |
| tree | 16b09e30b3674bcb9e69b9f507b730474e8dd6e7 /lib/sqlalchemy/sql | |
| parent | da297e5d2785f6607a71c8737d30c46ecd5e7f3f (diff) | |
| parent | 999b2e89955b97247d5624b0e638fa52f5342ad0 (diff) | |
| download | sqlalchemy-2f100a7d4bb143e1f8674a388d8d305be3051bd6.tar.gz | |
Merge "Implement MySQL-specific MATCH"
Diffstat (limited to 'lib/sqlalchemy/sql')
| -rw-r--r-- | lib/sqlalchemy/sql/operators.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/sqlalchemy/sql/operators.py b/lib/sqlalchemy/sql/operators.py index 60f03195c..408a505aa 100644 --- a/lib/sqlalchemy/sql/operators.py +++ b/lib/sqlalchemy/sql/operators.py @@ -954,6 +954,12 @@ class ColumnOperators(Operators): * PostgreSQL - renders ``x @@ to_tsquery(y)`` * MySQL - renders ``MATCH (x) AGAINST (y IN BOOLEAN MODE)`` + + .. seealso:: + + :class:`_mysql.match` - MySQL specific construct with + additional features. + * Oracle - renders ``CONTAINS(x, y)`` * other backends may provide special implementations. * Backends without any special implementation will emit |
