diff options
Diffstat (limited to 'src/backend/commands/async.c')
-rw-r--r-- | src/backend/commands/async.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/backend/commands/async.c b/src/backend/commands/async.c index 34e5ca9edb3..6e9c580ec6d 100644 --- a/src/backend/commands/async.c +++ b/src/backend/commands/async.c @@ -693,15 +693,8 @@ pg_listening_channels(PG_FUNCTION_ARGS) /* stuff done only on the first call of the function */ if (SRF_IS_FIRSTCALL()) { - MemoryContext oldcontext; - /* create a function context for cross-call persistence */ funcctx = SRF_FIRSTCALL_INIT(); - - /* switch to memory context appropriate for multiple function calls */ - oldcontext = MemoryContextSwitchTo(funcctx->multi_call_memory_ctx); - - MemoryContextSwitchTo(oldcontext); } /* stuff done on every call of the function */ |