aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2023-11-28 08:40:08 +0900
committerMichael Paquier <michael@paquier.xyz>2023-11-28 08:40:08 +0900
commit5ad49322e50459444b201e624d5df706751c9d41 (patch)
treeca8491fe34f602122c69e92a3cb777d9190ecbfc /src
parent14f2f9eb1a15f234f1ef417b8e62a6b7f950be4d (diff)
downloadpostgresql-5ad49322e50459444b201e624d5df706751c9d41.tar.gz
postgresql-5ad49322e50459444b201e624d5df706751c9d41.zip
Fix comment in tableam.h about GetHeapamTableAmRoutine()
This routine is located in heapam_handler.c, not tableamapi.c. Issue noted while hacking the area for a different patch. Reviewed-by: Richard Guo Discussion: https://postgr.es/m/ZWQuHltp2KS_0Cct@paquier.xyz
Diffstat (limited to 'src')
-rw-r--r--src/include/access/tableam.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/include/access/tableam.h b/src/include/access/tableam.h
index dbb709b56ce..9ab7201f4de 100644
--- a/src/include/access/tableam.h
+++ b/src/include/access/tableam.h
@@ -2095,6 +2095,12 @@ extern void table_block_relation_estimate_size(Relation rel,
*/
extern const TableAmRoutine *GetTableAmRoutine(Oid amhandler);
+
+/* ----------------------------------------------------------------------------
+ * Functions in heapam_handler.c
+ * ----------------------------------------------------------------------------
+ */
+
extern const TableAmRoutine *GetHeapamTableAmRoutine(void);
#endif /* TABLEAM_H */