aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/heap/heapam.c
diff options
context:
space:
mode:
authorDavid Rowley <drowley@postgresql.org>2024-04-28 20:03:34 +1200
committerDavid Rowley <drowley@postgresql.org>2024-04-28 20:03:34 +1200
commit310cd8ab386ca44213b62b1c36162110d46bfc7a (patch)
tree9de0009ba4dfda111dc17208b4af32bfe3c61000 /src/backend/access/heap/heapam.c
parente00b4f79e7367272b436dea6f15d6f421f3d6e1a (diff)
downloadpostgresql-310cd8ab386ca44213b62b1c36162110d46bfc7a.tar.gz
postgresql-310cd8ab386ca44213b62b1c36162110d46bfc7a.zip
Fix duplicated consecutive words in comments
Also, fix a comment incorrectly referencing the "streaming read API". This was renamed to "read stream" shortly before being committed. Discussion: https://postgr.es/m/CAApHDvq-2Zdqytm_Hf3RmVf0qg5PS9jTFAJ5QTc9xH9pwvwDTA@mail.gmail.com
Diffstat (limited to 'src/backend/access/heap/heapam.c')
-rw-r--r--src/backend/access/heap/heapam.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/heap/heapam.c b/src/backend/access/heap/heapam.c
index 4a4cf76269d..32e7d3c1464 100644
--- a/src/backend/access/heap/heapam.c
+++ b/src/backend/access/heap/heapam.c
@@ -1122,7 +1122,7 @@ heap_beginscan(Relation relation, Snapshot snapshot,
/*
* Set up a read stream for sequential scans and TID range scans. This
* should be done after initscan() because initscan() allocates the
- * BufferAccessStrategy object passed to the streaming read API.
+ * BufferAccessStrategy object passed to the read stream API.
*/
if (scan->rs_base.rs_flags & SO_TYPE_SEQSCAN ||
scan->rs_base.rs_flags & SO_TYPE_TIDRANGESCAN)