]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
contrib/amcheck: Add heapam CHECK_FOR_INTERRUPTS().
authorPeter Geoghegan <pg@bowt.ie>
Fri, 27 Aug 2021 01:42:18 +0000 (18:42 -0700)
committerPeter Geoghegan <pg@bowt.ie>
Fri, 27 Aug 2021 01:42:18 +0000 (18:42 -0700)
Add a CHECK_FOR_INTERRUPTS() call to make heap relation verification
responsive to query cancellations.

Author: Mark Dilger <mark.dilger@enterprisedb.com>
Discussion: https://postgr.es/m/CAH2-Wzk-9RtQgb2QiuLv8j2O0j9tSFKPmmch5nWSZhguUxvbrw%40mail.gmail.com
Backpatch: 14-, where amcheck heap verification was introduced.

contrib/amcheck/verify_heapam.c

index a3caee7cdd38c4436d7cda9c80cfecf6198e9516..3648ed8d4e7e3eae193a5797489c4630ca611259 100644 (file)
@@ -380,6 +380,8 @@ verify_heapam(PG_FUNCTION_ARGS)
        {
                OffsetNumber maxoff;
 
+               CHECK_FOR_INTERRUPTS();
+
                /* Optionally skip over all-frozen or all-visible blocks */
                if (skip_option != SKIP_PAGES_NONE)
                {