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:50:33 +0300 |
commit | c0bc4c682ee2a84dee2b562db3d17d173a6abc06 (patch) | |
tree | 7e2c5dfb18bb02869a80a6c1c85eecd797cd62f3 | |
parent | 1a64c7636f24096155f7aa15d7164eba3cdef075 (diff) | |
download | postgresql-c0bc4c682ee2a84dee2b562db3d17d173a6abc06.tar.gz postgresql-c0bc4c682ee2a84dee2b562db3d17d173a6abc06.zip |
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 8af6ac01d30..7daf292468a 100644 --- a/doc/src/sgml/textsearch.sgml +++ b/doc/src/sgml/textsearch.sgml @@ -1623,9 +1623,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> |