pgsql: Minimize slot creation for multi-inserts of pg_shdepend

Started by Michael Paquieralmost 6 years ago1 messagescomitters
Jump to latest
#1Michael Paquier
michael@paquier.xyz

Minimize slot creation for multi-inserts of pg_shdepend

When doing multiple insertions in pg_shdepend for the copy of
dependencies from a template database in CREATE DATABASE, the same
number of slots would have been created and used all the time. As the
number of items to insert is not known in advance, this makes most of
the slots created for nothing. This improves the slot handling so as
slot creation only happens when needed, minimizing the overhead of the
operation.

Author: Michael Paquier
Reviewed-by: Daniel Gustafsson
Discussion: /messages/by-id/20200731024148.GB3317@paquier.xyz

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/022350b8495a8a7ff0ff8dd6791572e91e7cd6fe

Modified Files
--------------
src/backend/catalog/pg_shdepend.c | 22 ++++++++++++++++------
1 file changed, 16 insertions(+), 6 deletions(-)