]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Allow _h_indexbuild() to be interrupted.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 13 Sep 2024 20:16:47 +0000 (16:16 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 13 Sep 2024 20:16:47 +0000 (16:16 -0400)
commite0857898b87b745235e65c28feed6e23e121876d
tree5ca3d332e58b3a924f34ba79ac137f0f39eb5123
parenta63aef5e496c1db0325845892d946e8569e7f9d6
Allow _h_indexbuild() to be interrupted.

When we are building a hash index that is large enough to need
pre-sorting (larger than either maintenance_work_mem or NBuffers),
the initial sorting phase is interruptible, but the insertion
phase wasn't.  Add the missing CHECK_FOR_INTERRUPTS().

Per bug #18616 from Alexander Lakhin.  Back-patch to all
supported branches.

Pavel Borisov

Discussion: https://postgr.es/m/18616-acbb9e5caf41e964@postgresql.org
src/backend/access/hash/hashsort.c