You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix to_tsquery() and websearch_to_tsquery() to properly parse certain discarded tokens in quotes (Alexander Korotkov)
88
+
Fix to_tsquery() and websearch_to_tsquery() to properly parse query text containing discarded tokens (Alexander Korotkov)
89
89
</para>
90
90
91
91
<para>
92
-
Certain discarded tokens, like underscore, caused the output of these functions to produce incorrect tsquery output, e.g., websearch_to_tsquery('"pg_class pg"') used to output '( pg & class )
93
-
<-> pg',but now outputs 'pg <-> class <-> pg'.
92
+
Certain discarded tokens, like underscore, caused the output of these functions to produce incorrect tsquery output, e.g., both websearch_to_tsquery('"pg_class pg"') and to_tsquery('pg_class <->
93
+
pg') used to output '( pg & class ) <-> pg',but now both output 'pg <-> class <-> pg'.
Allow logical decoding to more efficiently process cache invalidation messages
1699
+
Allow logical decoding to more efficiently process cache invalidation messages (Dilip Kumar)
1652
1700
</para>
1653
1701
1654
1702
<para>
@@ -2234,7 +2282,7 @@ Add date_bin function (John Naylor)
2234
2282
</para>
2235
2283
2236
2284
<para>
2237
-
WHAT DOES THIS DO?
2285
+
The function date_bin "bins" the input timestamp into a specified interval aligned with a specified origin.
2238
2286
</para>
2239
2287
</listitem>
2240
2288
@@ -2338,11 +2386,11 @@ Author: Alexander Korotkov <[email protected]>
2338
2386
-->
2339
2387
2340
2388
<para>
2341
-
Allow subscripting of jsonb (Dmitry Dolgov)
2389
+
Allow subscripting of JSONB and simplify the implementation of subscripting (Dmitry Dolgov)
2342
2390
</para>
2343
2391
2344
2392
<para>
2345
-
Subscripting can be used to extract from and assign to jsonb documents.
2393
+
JSONB subscripting can be used to extract from and assign to JSONB documents. Extensions and built-in data types can now implement subscripting more easily.
2346
2394
</para>
2347
2395
</listitem>
2348
2396
@@ -2409,21 +2457,6 @@ Allow more flexible data types for default values of lead() and lag() window fun
0 commit comments