aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/transam/xact.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/access/transam/xact.c')
-rw-r--r--src/backend/access/transam/xact.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/backend/access/transam/xact.c b/src/backend/access/transam/xact.c
index 046898c6190..e93d740b210 100644
--- a/src/backend/access/transam/xact.c
+++ b/src/backend/access/transam/xact.c
@@ -997,11 +997,12 @@ AtStart_Memory(void)
*/
if (TransactionAbortContext == NULL)
TransactionAbortContext =
- AllocSetContextCreate(TopMemoryContext,
- "TransactionAbortContext",
- 32 * 1024,
- 32 * 1024,
- 32 * 1024);
+ AllocSetContextCreateExtended(TopMemoryContext,
+ "TransactionAbortContext",
+ 0,
+ 32 * 1024,
+ 32 * 1024,
+ 32 * 1024);
/*
* We shouldn't have a transaction context already.