aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Geoghegan <pg@bowt.ie>2020-04-28 16:12:56 -0700
committerPeter Geoghegan <pg@bowt.ie>2020-04-28 16:12:56 -0700
commit52b164c5a00095a34685e66bf64b009578b9cfda (patch)
tree0ff999c49a84a7212bf5a8fb41a29ac90280232f /src
parent6baa17fbd1a76cd4056168fa718b7e7fd65748ec (diff)
downloadpostgresql-52b164c5a00095a34685e66bf64b009578b9cfda.tar.gz
postgresql-52b164c5a00095a34685e66bf64b009578b9cfda.zip
Add LP_DEAD deletion of a posting list tuple test.
Make sure that we have test coverage of the posting list tuple path within _bt_xid_horizon(). Per off-list complaint from Andres Freund.
Diffstat (limited to 'src')
-rw-r--r--src/test/regress/expected/btree_index.out13
-rw-r--r--src/test/regress/sql/btree_index.sql14
2 files changed, 21 insertions, 6 deletions
diff --git a/src/test/regress/expected/btree_index.out b/src/test/regress/expected/btree_index.out
index c0657020b01..cfd4338e36e 100644
--- a/src/test/regress/expected/btree_index.out
+++ b/src/test/regress/expected/btree_index.out
@@ -284,14 +284,21 @@ BEGIN
INSERT INTO dedup_unique_test_table SELECT 1;
END LOOP;
END$$;
+-- Exercise the LP_DEAD-bit-set tuple deletion code with a posting list tuple.
+-- The implementation prefers deleting existing items to merging any duplicate
+-- tuples into a posting list, so we need an explicit test to make sure we get
+-- coverage (note that this test also assumes BLCKSZ is 8192 or less):
+DROP INDEX plain_unique;
+DELETE FROM dedup_unique_test_table WHERE a = 1;
+INSERT INTO dedup_unique_test_table SELECT i FROM generate_series(0,450) i;
--
-- Test B-tree fast path (cache rightmost leaf page) optimization.
--
-- First create a tree that's at least three levels deep (i.e. has one level
-- between the root and leaf levels). The text inserted is long. It won't be
--- compressed because we use plain storage in the table. Only a few index
--- tuples fit on each internal page, allowing us to get a tall tree with few
--- pages. (A tall tree is required to trigger caching.)
+-- TOAST compressed because we use plain storage in the table. Only a few
+-- index tuples fit on each internal page, allowing us to get a tall tree with
+-- few pages. (A tall tree is required to trigger caching.)
--
-- The text column must be the leading column in the index, since suffix
-- truncation would otherwise truncate tuples on internal pages, leaving us
diff --git a/src/test/regress/sql/btree_index.sql b/src/test/regress/sql/btree_index.sql
index 4245cbb80c4..96f53818ff7 100644
--- a/src/test/regress/sql/btree_index.sql
+++ b/src/test/regress/sql/btree_index.sql
@@ -123,15 +123,23 @@ BEGIN
END LOOP;
END$$;
+-- Exercise the LP_DEAD-bit-set tuple deletion code with a posting list tuple.
+-- The implementation prefers deleting existing items to merging any duplicate
+-- tuples into a posting list, so we need an explicit test to make sure we get
+-- coverage (note that this test also assumes BLCKSZ is 8192 or less):
+DROP INDEX plain_unique;
+DELETE FROM dedup_unique_test_table WHERE a = 1;
+INSERT INTO dedup_unique_test_table SELECT i FROM generate_series(0,450) i;
+
--
-- Test B-tree fast path (cache rightmost leaf page) optimization.
--
-- First create a tree that's at least three levels deep (i.e. has one level
-- between the root and leaf levels). The text inserted is long. It won't be
--- compressed because we use plain storage in the table. Only a few index
--- tuples fit on each internal page, allowing us to get a tall tree with few
--- pages. (A tall tree is required to trigger caching.)
+-- TOAST compressed because we use plain storage in the table. Only a few
+-- index tuples fit on each internal page, allowing us to get a tall tree with
+-- few pages. (A tall tree is required to trigger caching.)
--
-- The text column must be the leading column in the index, since suffix
-- truncation would otherwise truncate tuples on internal pages, leaving us