aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2014-02-26 18:48:21 +0200
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2014-02-26 18:49:04 +0200
commit00976f202ce13daf15ec6e8de37f87fc9904b5e2 (patch)
tree29b57dbd07baa53c9452fa43e67cbc1f2de56c56 /src
parent486ea0b19e08c10ff53e36e46209a928df048281 (diff)
downloadpostgresql-00976f202ce13daf15ec6e8de37f87fc9904b5e2.tar.gz
postgresql-00976f202ce13daf15ec6e8de37f87fc9904b5e2.zip
btbuild no longer calls _bt_doinsert(), update comment.
Peter Geoghegan
Diffstat (limited to 'src')
-rw-r--r--src/backend/access/nbtree/nbtinsert.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/nbtree/nbtinsert.c b/src/backend/access/nbtree/nbtinsert.c
index 91407499981..5f7953f5b38 100644
--- a/src/backend/access/nbtree/nbtinsert.c
+++ b/src/backend/access/nbtree/nbtinsert.c
@@ -83,8 +83,8 @@ static void _bt_vacuum_one_page(Relation rel, Buffer buffer, Relation heapRel);
/*
* _bt_doinsert() -- Handle insertion of a single index tuple in the tree.
*
- * This routine is called by the public interface routines, btbuild
- * and btinsert. By here, itup is filled in, including the TID.
+ * This routine is called by the public interface routine, btinsert.
+ * By here, itup is filled in, including the TID.
*
* If checkUnique is UNIQUE_CHECK_NO or UNIQUE_CHECK_PARTIAL, this
* will allow duplicates. Otherwise (UNIQUE_CHECK_YES or