aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2021-05-26 19:53:03 +0900
committerMichael Paquier <michael@paquier.xyz>2021-05-26 19:53:03 +0900
commit190fa5a00a8f9ecee8eef2c8e26136b772b94e19 (patch)
treee279b83719595a67ad3f0b8d84a4fbf4a4b8f49a
parenteb43bdbf5104c183412aac0fccf8e515e60d9212 (diff)
downloadpostgresql-190fa5a00a8f9ecee8eef2c8e26136b772b94e19.tar.gz
postgresql-190fa5a00a8f9ecee8eef2c8e26136b772b94e19.zip
Fix typo in heapam.c
Author: Hou Zhijie Discussion: https://postgr.es/m/OS0PR01MB571612191738540B27A8DE5894249@OS0PR01MB5716.jpnprd01.prod.outlook.com
-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 6ac07f2fdac..bd60129aeb7 100644
--- a/src/backend/access/heap/heapam.c
+++ b/src/backend/access/heap/heapam.c
@@ -2356,7 +2356,7 @@ heap_prepare_insert(Relation relation, HeapTuple tup, TransactionId xid,
}
/*
- * heap_multi_insert - insert multiple tuple into a heap
+ * heap_multi_insert - insert multiple tuples into a heap
*
* This is like heap_insert(), but inserts multiple tuples in one operation.
* That's faster than calling heap_insert() in a loop, because when multiple