diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2020-10-19 18:50:33 +0300 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2020-10-19 18:51:03 +0300 |
commit | 609fe21c0dbd50cd5e3d13a73ea2f757fdfc75ff (patch) | |
tree | 6497a743de460499fc53da22de99685f6d079c17 | |
parent | 6670e91078b3cc7927b9a16d2082586bef63b547 (diff) |
Fix output of tsquery example in docs.
The output for this query changed in commit 4e2477b7b8. Backport to 9.6
like that commit.
Patch by Justin Pryzby, per Yaroslav Schekin's report.
Discussion: https://www.postgresql.org/message-id/20201005191922.GE17626%40telsasoft.com
-rw-r--r-- | doc/src/sgml/textsearch.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/textsearch.sgml b/doc/src/sgml/textsearch.sgml index 7e0b7e44f14..829e1497b91 100644 --- a/doc/src/sgml/textsearch.sgml +++ b/doc/src/sgml/textsearch.sgml @@ -1541,9 +1541,9 @@ occurrences to display in the result.', <screen> SELECT to_tsquery('fat') <-> to_tsquery('cat | rat'); - ?column? ------------------------------------ - 'fat' <-> 'cat' | 'fat' <-> 'rat' + ?column? +---------------------------- + 'fat' <-> ( 'cat' | 'rat' ) </screen> </para> </listitem> |