diff options
author | Peter Geoghegan <pg@bowt.ie> | 2020-06-20 17:34:07 -0700 |
---|---|---|
committer | Peter Geoghegan <pg@bowt.ie> | 2020-06-20 17:34:07 -0700 |
commit | 48c6959864491964ae3f893af8242d5770b3d3d2 (patch) | |
tree | c80ee6db5e9ee47e061b4f2ecd2f6219d0a3e6ad | |
parent | 3be015c9fc02316f1f1579301391fb5c67731057 (diff) | |
download | postgresql-48c6959864491964ae3f893af8242d5770b3d3d2.tar.gz postgresql-48c6959864491964ae3f893af8242d5770b3d3d2.zip |
Doc: Tweak description of B-Tree duplicate tuples.
Defining duplicates as "close by" to each other was unclear. Simplify
the definition.
Backpatch: 13-, where deduplication was introduced (by commit 0d861bbb)
-rw-r--r-- | doc/src/sgml/btree.sgml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/btree.sgml b/doc/src/sgml/btree.sgml index 661e7ab6503..4f1438d522d 100644 --- a/doc/src/sgml/btree.sgml +++ b/doc/src/sgml/btree.sgml @@ -635,10 +635,10 @@ options(<replaceable>relopts</replaceable> <type>local_relopts *</type>) returns A duplicate is a leaf page tuple (a tuple that points to a table row) where <emphasis>all</emphasis> indexed key columns have values that match corresponding column values from at least one other leaf - page tuple that's close by in the same index. Duplicate tuples are - quite common in practice. B-Tree indexes can use a special, - space-efficient representation for duplicates when an optional - technique is enabled: <firstterm>deduplication</firstterm>. + page tuple in the same index. Duplicate tuples are quite common in + practice. B-Tree indexes can use a special, space-efficient + representation for duplicates when an optional technique is + enabled: <firstterm>deduplication</firstterm>. </para> <para> Deduplication works by periodically merging groups of duplicate |