mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-18 18:44:06 +08:00
367b99bbb1
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.
38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
CREATE TABLE test1 (x int, y int[]);
|
|
INSERT INTO test1 VALUES (1, ARRAY[11, 111]);
|
|
CREATE INDEX test1_y_idx ON test1 USING gin (y) WITH (fastupdate = off);
|
|
\x
|
|
SELECT * FROM gin_metapage_info(get_raw_page('test1_y_idx', 0));
|
|
-[ RECORD 1 ]----+-----------
|
|
pending_head | 4294967295
|
|
pending_tail | 4294967295
|
|
tail_free_size | 0
|
|
n_pending_pages | 0
|
|
n_pending_tuples | 0
|
|
n_total_pages | 2
|
|
n_entry_pages | 1
|
|
n_data_pages | 0
|
|
n_entries | 2
|
|
version | 2
|
|
|
|
SELECT * FROM gin_metapage_info(get_raw_page('test1_y_idx', 1));
|
|
ERROR: input page is not a GIN metapage
|
|
DETAIL: Flags 0002, expected 0008
|
|
SELECT * FROM gin_page_opaque_info(get_raw_page('test1_y_idx', 1));
|
|
-[ RECORD 1 ]---------
|
|
rightlink | 4294967295
|
|
maxoff | 0
|
|
flags | {leaf}
|
|
|
|
SELECT * FROM gin_leafpage_items(get_raw_page('test1_y_idx', 1));
|
|
ERROR: input page is not a compressed GIN data leaf page
|
|
DETAIL: Flags 0002, expected 0083
|
|
INSERT INTO test1 SELECT x, ARRAY[1,10] FROM generate_series(2,10000) x;
|
|
SELECT COUNT(*) > 0
|
|
FROM gin_leafpage_items(get_raw_page('test1_y_idx',
|
|
(pg_relation_size('test1_y_idx') /
|
|
current_setting('block_size')::bigint)::int - 1));
|
|
-[ RECORD 1 ]
|
|
?column? | t
|
|
|