mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Use multi-inserts for pg_attribute and pg_shdepend
For pg_attribute, this allows to insert at once a full set of attributes for a relation (roughly 15% of WAL reduction in extreme cases). For pg_shdepend, this reduces the work done when creating new shared dependencies from a database template. The number of slots used for the insertion is capped at 64kB of data inserted for both, depending on the number of items to insert and the length of the rows involved. More can be done for other catalogs, like pg_depend. This part requires a different approach as the number of slots to use depends also on the number of entries discarded as pinned dependencies. This is also related to the rework or dependency handling for ALTER TABLE and CREATE TABLE, mainly. Author: Daniel Gustafsson Reviewed-by: Andres Freund, Michael Paquier Discussion: https://postgr.es/m/20190213182737.mxn6hkdxwrzgxk35@alap3.anarazel.de
This commit is contained in:
@ -2164,8 +2164,8 @@ heap_multi_insert(Relation relation, TupleTableSlot **slots, int ntuples,
|
||||
RelationPutHeapTuple(relation, buffer, heaptuples[ndone], false);
|
||||
|
||||
/*
|
||||
* Note that heap_multi_insert is not used for catalog tuples yet, but
|
||||
* this will cover the gap once that is the case.
|
||||
* For logical decoding we need combocids to properly decode the
|
||||
* catalog.
|
||||
*/
|
||||
if (needwal && need_cids)
|
||||
log_heap_new_cid(relation, heaptuples[ndone]);
|
||||
@ -2180,8 +2180,8 @@ heap_multi_insert(Relation relation, TupleTableSlot **slots, int ntuples,
|
||||
RelationPutHeapTuple(relation, buffer, heaptup, false);
|
||||
|
||||
/*
|
||||
* We don't use heap_multi_insert for catalog tuples yet, but
|
||||
* better be prepared...
|
||||
* For logical decoding we need combocids to properly decode the
|
||||
* catalog.
|
||||
*/
|
||||
if (needwal && need_cids)
|
||||
log_heap_new_cid(relation, heaptup);
|
||||
|
Reference in New Issue
Block a user