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
If server variable compute_query_id is enabled, display the hash in pg_stat_activity, EXPLAIN VERBOSE, csvlog, and optionally in log_line_prefix (Julien Rouhaud, Álvaro Herrera)
1116
+
If server variable compute_query_id is enabled, display the query id in pg_stat_activity, EXPLAIN VERBOSE, csvlog, and optionally in log_line_prefix (Julien Rouhaud)
1117
1117
</para>
1118
1118
1119
1119
<para>
@@ -2075,6 +2075,41 @@ Allow CURRENT_ROLE every place CURRENT_USER is accepted (Peter Eisentraut)
2075
2075
2076
2076
<itemizedlist>
2077
2077
2078
+
<listitem>
2079
+
<!--
2080
+
Author: Tom Lane <tgl@sss.pgh.pa.us>
2081
+
2020-12-09 [c7aba7c14] Support subscripting of arbitrary types, not only arrays
2082
+
-->
2083
+
2084
+
<para>
2085
+
Allow extensions and built-in data types to implement subscripting (Dmitry Dolgov)
2086
+
</para>
2087
+
2088
+
<para>
2089
+
Previously subscript handling was hard-coded into the server, so that subscripting could only be applied to array types. This change allows subscript notation to be used to extract or
2090
+
assign portions of a value of any type for which the concept makes sense.
2091
+
</para>
2092
+
</listitem>
2093
+
2094
+
<listitem>
2095
+
<!--
2096
+
Author: Alexander Korotkov <akorotkov@postgresql.org>
2097
+
2021-01-31 [676887a3b] Implementation of subscripting for jsonb
2098
+
Author: Alexander Korotkov <akorotkov@postgresql.org>
2099
+
2021-01-31 [81fcc72e6] Filling array gaps during jsonb subscripting
2100
+
Author: Alexander Korotkov <akorotkov@postgresql.org>
2101
+
2021-01-31 [aa6e46daf] Throw error when assigning jsonb scalar instead of a com
2102
+
-->
2103
+
2104
+
<para>
2105
+
Allow subscripting of JSONB (Dmitry Dolgov)
2106
+
</para>
2107
+
2108
+
<para>
2109
+
JSONB subscripting can be used to extract and assign to portions of JSONB documents.
2110
+
</para>
2111
+
</listitem>
2112
+
2078
2113
<listitem>
2079
2114
<!--
2080
2115
Author: Author: Alexander Korotkov <akorotkov@postgresql.org>
@@ -2266,25 +2301,6 @@ Allow procedures to have OUT parameters (Peter Eisentraut)
2266
2301
</para>
2267
2302
</listitem>
2268
2303
2269
-
<listitem>
2270
-
<!--
2271
-
Author: Alexander Korotkov <akorotkov@postgresql.org>
2272
-
2021-01-31 [676887a3b] Implementation of subscripting for jsonb
2273
-
Author: Alexander Korotkov <akorotkov@postgresql.org>
2274
-
2021-01-31 [81fcc72e6] Filling array gaps during jsonb subscripting
2275
-
Author: Alexander Korotkov <akorotkov@postgresql.org>
2276
-
2021-01-31 [aa6e46daf] Throw error when assigning jsonb scalar instead of a com
2277
-
-->
2278
-
2279
-
<para>
2280
-
Allow subscripting of JSONB and simplify the implementation of subscripting (Dmitry Dolgov)
2281
-
</para>
2282
-
2283
-
<para>
2284
-
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.
0 commit comments