aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlexander Korotkov <akorotkov@postgresql.org>2024-06-22 16:13:08 +0300
committerAlexander Korotkov <akorotkov@postgresql.org>2024-06-22 16:17:50 +0300
commit70a845c04a47645b58f8276a6b3ab201ea8ec426 (patch)
treedf93a0dae4191ea4b688047c9760a8d6883fb23b /src
parenta8ffa32377a765fc8d3c4354cdd5a258f596c810 (diff)
downloadpostgresql-70a845c04a47645b58f8276a6b3ab201ea8ec426.tar.gz
postgresql-70a845c04a47645b58f8276a6b3ab201ea8ec426.zip
Remove extra comment at TableAmRoutine.scan_analyze_next_block
The extra comment was accidentally copied here by 6377e12a from heapam_scan_analyze_next_block(). Reported-by: Matthias van de Meent Discussion: https://postgr.es/m/CAEze2WjC5PiweG-4oe0hB_Zr59iF3tRE1gURm8w4Cg5b6JEBGw%40mail.gmail.com
Diffstat (limited to 'src')
-rw-r--r--src/include/access/tableam.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/include/access/tableam.h b/src/include/access/tableam.h
index 8e583b45cd5..da661289c1f 100644
--- a/src/include/access/tableam.h
+++ b/src/include/access/tableam.h
@@ -656,16 +656,6 @@ typedef struct TableAmRoutine
BufferAccessStrategy bstrategy);
/*
- * Prepare to analyze the next block in the read stream. Returns false if
- * the stream is exhausted and true otherwise. The scan must have been
- * started with SO_TYPE_ANALYZE option.
- *
- * This routine holds a buffer pin and lock on the heap page. They are
- * held until heapam_scan_analyze_next_tuple() returns false. That is
- * until all the items of the heap page are analyzed.
- */
-
- /*
* Prepare to analyze block `blockno` of `scan`. The scan has been started
* with table_beginscan_analyze(). See also
* table_scan_analyze_next_block().