]> granicus.if.org Git - postgresql/blobdiff - src/backend/replication/logical/reorderbuffer.c
Allow memory contexts to have both fixed and variable ident strings.
[postgresql] / src / backend / replication / logical / reorderbuffer.c
index 5ffe638b19ce844afb24eca0b4bf156a237c3c45..b4016ed52b076806913a040a4fff86f8ff4dd9d2 100644 (file)
@@ -243,19 +243,16 @@ ReorderBufferAllocate(void)
 
        buffer->change_context = SlabContextCreate(new_ctx,
                                                                                           "Change",
-                                                                                          0,
                                                                                           SLAB_DEFAULT_BLOCK_SIZE,
                                                                                           sizeof(ReorderBufferChange));
 
        buffer->txn_context = SlabContextCreate(new_ctx,
                                                                                        "TXN",
-                                                                                       0,
                                                                                        SLAB_DEFAULT_BLOCK_SIZE,
                                                                                        sizeof(ReorderBufferTXN));
 
        buffer->tup_context = GenerationContextCreate(new_ctx,
                                                                                                  "Tuples",
-                                                                                                 0,
                                                                                                  SLAB_LARGE_BLOCK_SIZE);
 
        hash_ctl.keysize = sizeof(TransactionId);