pgsql: Fix array allocation bugs in SetExplainExtensionState. - Mailing list pgsql-committers

From Robert Haas
Subject pgsql: Fix array allocation bugs in SetExplainExtensionState.
Date
Msg-id E1v1oMV-00028G-0N@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix array allocation bugs in SetExplainExtensionState.

If we already have an extension_state array but see a new extension_id
much larger than the highest the extension_id we've previously seen,
the old code might have failed to expand the array to a large enough
size, leading to disaster. Also, if we don't have an extension array
at all and need to create one, we should make sure that it's big enough
that we don't have to resize it instantly.

Reported-by: Tom Lane <tgl@sss.pgh.pa.us>
Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us>
Discussion: http://postgr.es/m/2949591.1758570711@sss.pgh.pa.us
Backpatch-through: 18

Branch
------
REL_18_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/694057d236b114f8c750b996b9ca5b8a07424650

Modified Files
--------------
src/backend/commands/explain_state.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Doc: clean up documentation for new UUID functions.
Next
From: Tom Lane
Date:
Subject: pgsql: Add minimal sleep to stats isolation test functions.