mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
Fix gin_leafpage_items().
On closer inspection, commit 84ad68d64
broke gin_leafpage_items(),
because the aligned copy of the page got palloc'd in a short-lived
context whereas it needs to be in the SRF's multi_call_memory_ctx.
This was not exposed by the regression test, because the regression
test doesn't actually exercise the function in a meaningful way.
Fix the code bug, and extend the test in what I hope is a portable
fashion.
This commit is contained in:
@ -197,6 +197,9 @@ gin_leafpage_items(PG_FUNCTION_ARGS)
|
||||
Page page;
|
||||
GinPageOpaque opaq;
|
||||
|
||||
fctx = SRF_FIRSTCALL_INIT();
|
||||
mctx = MemoryContextSwitchTo(fctx->multi_call_memory_ctx);
|
||||
|
||||
page = get_page_from_raw(raw_page);
|
||||
|
||||
if (PageGetSpecialSize(page) != MAXALIGN(sizeof(GinPageOpaqueData)))
|
||||
@ -216,9 +219,6 @@ gin_leafpage_items(PG_FUNCTION_ARGS)
|
||||
opaq->flags,
|
||||
(GIN_DATA | GIN_LEAF | GIN_COMPRESSED))));
|
||||
|
||||
fctx = SRF_FIRSTCALL_INIT();
|
||||
mctx = MemoryContextSwitchTo(fctx->multi_call_memory_ctx);
|
||||
|
||||
inter_call_data = palloc(sizeof(gin_leafpage_items_state));
|
||||
|
||||
/* Build a tuple descriptor for our result type */
|
||||
|
Reference in New Issue
Block a user