Kaydet (Commit) 9a2c2b7a authored tarafından Simon Willison's avatar Simon Willison Kaydeden (comit) Tim Graham

[2.0.x] Made SearchQuery examples less sterotyped.

Backport of 346eb328 from master
üst c678ff91
...@@ -80,9 +80,9 @@ looks for matches for all of the resulting terms. ...@@ -80,9 +80,9 @@ looks for matches for all of the resulting terms.
``SearchQuery`` terms can be combined logically to provide more flexibility:: ``SearchQuery`` terms can be combined logically to provide more flexibility::
>>> from django.contrib.postgres.search import SearchQuery >>> from django.contrib.postgres.search import SearchQuery
>>> SearchQuery('potato') & SearchQuery('ireland') # potato AND ireland >>> SearchQuery('meat') & SearchQuery('cheese') # AND
>>> SearchQuery('potato') | SearchQuery('penguin') # potato OR penguin >>> SearchQuery('meat') | SearchQuery('cheese') # OR
>>> ~SearchQuery('sausage') # NOT sausage >>> ~SearchQuery('meat') # NOT
See :ref:`postgresql-fts-search-configuration` for an explanation of the See :ref:`postgresql-fts-search-configuration` for an explanation of the
``config`` parameter. ``config`` parameter.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment