Skip to content

Commit 609fe21

Browse files
committed
Fix output of tsquery example in docs.
The output for this query changed in commit 4e2477b. 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
1 parent 6670e91 commit 609fe21

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/src/sgml/textsearch.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1541,9 +1541,9 @@ occurrences to display in the result.',
15411541

15421542
<screen>
15431543
SELECT to_tsquery('fat') &lt;-&gt; to_tsquery('cat | rat');
1544-
?column?
1545-
-----------------------------------
1546-
'fat' &lt;-&gt; 'cat' | 'fat' &lt;-&gt; 'rat'
1544+
?column?
1545+
----------------------------
1546+
'fat' &lt;-&gt; ( 'cat' | 'rat' )
15471547
</screen>
15481548
</para>
15491549
</listitem>

0 commit comments

Comments
 (0)