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
Previously, the string value of such variables was set to match the variable name during cursor assignment; now it will be assigned during OPEN, and will not match the variable name.
63
+
To restore the previous behavior, assign the desired portal name to the cursor variable before OPEN.
63
64
</para>
64
65
</listitem>
65
66
@@ -257,7 +258,7 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
257
258
258
259
<listitem>
259
260
<para>
260
-
Allow memoize atopof UNION ALL and partitions (Richard Guo)
261
+
Allow memoize atopa UNION ALL (Richard Guo)
261
262
</para>
262
263
</listitem>
263
264
@@ -268,7 +269,7 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
268
269
269
270
<listitem>
270
271
<para>
271
-
Allow anti-joins to beconstructed on theright/outer side (Richard Guo)
272
+
Allow anti-joins to beperformed with thenon-nullable input as the inner relation (Richard Guo)
Previously only a single privilegenames, like SELECT,were supported.
928
+
Previously only a single privilegename, like SELECT,was accepted.
928
929
</para>
929
930
</listitem>
930
931
@@ -972,11 +973,7 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
972
973
973
974
<listitem>
974
975
<para>
975
-
Store server variables in a hash table (Tom Lane)
976
-
</para>
977
-
978
-
<para>
979
-
This allows the faster addition of server variables.
976
+
Improve performance of server variable management (Tom Lane)
980
977
</para>
981
978
</listitem>
982
979
@@ -1081,7 +1078,9 @@ Allow the postmaster to terminate children with an abort signal (Tom Lane)
1081
1078
</para>
1082
1079
1083
1080
<para>
1084
-
Abort normally creates a core dump. This is controlled by send_abort_for_crash and send_abort_for_kill. postmaster -T is now the same as setting send_abort_for_crash.
1081
+
This allows collection of a core dump for a stuck child process.
1082
+
This is controlled by send_abort_for_crash and send_abort_for_kill.
1083
+
The postmaster's -T switch is now the same as setting send_abort_for_crash.
1085
1084
</para>
1086
1085
</listitem>
1087
1086
@@ -1092,7 +1091,7 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>