Backpatch tuplesort.c assertion.
authorPeter Geoghegan <[email protected]>
Wed, 29 Jul 2020 23:00:48 +0000 (16:00 -0700)
committerPeter Geoghegan <[email protected]>
Wed, 29 Jul 2020 23:00:48 +0000 (16:00 -0700)
Backpatch an assertion (that was originally added to Postgres 12 by
commit dd299df8189) that seems broadly useful.  The assertion can detect
violations of the HOT invariant (i.e. no two index tuples can point to
the same heap TID) when CREATE INDEX somehow incorrectly allows that to
take place.

For example, a IndexBuildHeapScan/heapam_index_build_range_scan bug
might result in two tuples that both point to the same heap TID.  If
these two tuples also happen to be duplicates, the assertion will fail.

Discussion: https://postgr.es/m/CAH2-WzmBxu4o=pMsniur+bwHqCGCmV_AOLkuK6BuU7ngA6evqw@mail.gmail.com
Backpatch: 9.5-11 only

src/backend/utils/sort/tuplesort.c

index b6951d4ac93d2939dd44f6d206dbd201a8b0ea71..1a7a08ea94663eba4abffb8ea2d3d9816cc17c74 100644 (file)
@@ -3682,6 +3682,9 @@ comparetup_index_btree(const SortTuple *a, const SortTuple *b,
            return (pos1 < pos2) ? -1 : 1;
    }
 
+   /* ItemPointer values should never be equal */
+   Assert(false);
+
    return 0;
 }
 
@@ -3731,6 +3734,9 @@ comparetup_index_hash(const SortTuple *a, const SortTuple *b,
            return (pos1 < pos2) ? -1 : 1;
    }
 
+   /* ItemPointer values should never be equal */
+   Assert(false);
+
    return 0;
 }