Commit 166fcf4a authored by Peter Eisentraut's avatar Peter Eisentraut

doc: Make release note entries more accurate

Two tsquery-related release note entries had inaccuracies in the
before and after examples.  Clean that up.
parent 5e60237a
...@@ -108,9 +108,9 @@ Author: Alexander Korotkov <akorotkov@postgresql.org> ...@@ -108,9 +108,9 @@ Author: Alexander Korotkov <akorotkov@postgresql.org>
<para> <para>
Certain discarded tokens, like underscore, caused the output of Certain discarded tokens, like underscore, caused the output of
these functions to produce incorrect tsquery output, e.g., both these functions to produce incorrect tsquery output, e.g., both
websearch_to_tsquery('"pg_class pg"') and to_tsquery('pg_class <literal>websearch_to_tsquery('"pg_class pg"')</literal> and <literal>to_tsquery('pg_class
&lt;-&gt; pg') used to output '( pg &amp; class ) &lt;-&gt; pg', &lt;-&gt; pg')</literal> used to output <literal>( 'pg' &amp; 'class' ) &lt;-&gt; 'pg'</literal>,
but now both output 'pg &lt;-&gt; class &lt;-&gt; pg'. but now both output <literal>'pg' &lt;-&gt; 'class' &lt;-&gt; 'pg'</literal>.
</para> </para>
</listitem> </listitem>
...@@ -130,8 +130,8 @@ Author: Alexander Korotkov <akorotkov@postgresql.org> ...@@ -130,8 +130,8 @@ Author: Alexander Korotkov <akorotkov@postgresql.org>
<para> <para>
Previously, quoted text that contained multiple adjacent discarded Previously, quoted text that contained multiple adjacent discarded
tokens were treated as multiple tokens, causing incorrect tsquery tokens were treated as multiple tokens, causing incorrect tsquery
output, e.g., websearch_to_tsquery('"aaa: bbb"') used to output output, e.g., <literal>websearch_to_tsquery('"aaa: bbb"')</literal> used to output
'aaa &lt;2&gt; bbb', but now outputs 'aaa &lt;-&gt; bbb'. <literal>'aaa' &lt;2&gt; 'bbb'</literal>, but now outputs <literal>'aaa' &lt;-&gt; 'bbb'</literal>.
</para> </para>
</listitem> </listitem>
......
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