heap_force_common() tracked the current position in the caller-supplied
tid[] using OffsetNumber, which is only 16 bits wide, so when the array
held more than 65535 entries, the updated index wrapped around and the
outer loop never reached the exit condition. A SQL call with a
sufficiently large TID array would then run until interrupted.
Fix by tracking the tid[] position using int instead of OffsetNumber.
A regress case based on the report is included.
Author: Andrey Rachitskiy <pl0h0yp1@gmail.com>
Reviewed-by: Andrey Borodin <x4mmm@yandex-team.ru>
Reported-by: Yuelin Wang <1217816127@qq.com>
Backpatch-through: 14
Bug: #19607
Discussion: https://postgr.es/m/19607-
2f256a66481c514b@postgresql.org
(1 row)
+-- a tid[] larger than 65535 entries must still finish
+create temp table htab3(a int);
+insert into htab3 values (1);
+select heap_force_kill(
+ 'htab3'::regclass,
+ array(select '(0,1)'::tid from generate_series(1, 65536)));
+ heap_force_kill
+-----------------
+
+(1 row)
+
+select count(*) from htab3;
+ count
+-------
+ 0
+(1 row)
+
-- materialized view.
-- note that we don't commit the transaction, so autovacuum can't interfere.
begin;
HeapTupleForceOption heap_force_opt);
static void sanity_check_tid_array(ArrayType *ta, int *ntids);
static BlockNumber find_tids_one_page(ItemPointer tids, int ntids,
- OffsetNumber *next_start_ptr);
+ int *next_start_ptr);
/*-------------------------------------------------------------------------
* heap_force_kill()
int ntids,
nblocks;
Relation rel;
- OffsetNumber curr_start_ptr,
+ int curr_start_ptr,
next_start_ptr;
bool include_this_tid[MaxHeapTuplesPerPage];
* ------------------------------------------------------------------------
*/
static BlockNumber
-find_tids_one_page(ItemPointer tids, int ntids, OffsetNumber *next_start_ptr)
+find_tids_one_page(ItemPointer tids, int ntids, int *next_start_ptr)
{
int i;
BlockNumber prev_blkno,
-- but we should be able to kill the one tuple we have
select heap_force_kill('htab2'::regclass, ARRAY['(0, 3)']::tid[]);
+-- a tid[] larger than 65535 entries must still finish
+create temp table htab3(a int);
+insert into htab3 values (1);
+select heap_force_kill(
+ 'htab3'::regclass,
+ array(select '(0,1)'::tid from generate_series(1, 65536)));
+select count(*) from htab3;
+
-- materialized view.
-- note that we don't commit the transaction, so autovacuum can't interfere.
begin;