summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorHiroshi Inoue <inoue@tpf.co.jp>2000-08-10 02:33:20 +0000
committerHiroshi Inoue <inoue@tpf.co.jp>2000-08-10 02:33:20 +0000
commitb0d5036c7cadb7458d00faffe9b194be8471c84a (patch)
tree6ecc2307506c4f37f24250739e89cad122f7f872 /src/include
parent5ab40f0b85723caefecad972820580a8109d5e73 (diff)
CREATE btree INDEX takes dead tuples into account when old transactions
are running.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/access/nbtree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/access/nbtree.h b/src/include/access/nbtree.h
index d84cfa5ded9..da080603fc0 100644
--- a/src/include/access/nbtree.h
+++ b/src/include/access/nbtree.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: nbtree.h,v 1.40 2000/07/25 04:47:57 tgl Exp $
+ * $Id: nbtree.h,v 1.41 2000/08/10 02:33:19 inoue Exp $
*
*-------------------------------------------------------------------------
*/
@@ -289,6 +289,6 @@ typedef struct BTSpool BTSpool; /* opaque type known only within nbtsort.c */
extern BTSpool *_bt_spoolinit(Relation index, bool isunique);
extern void _bt_spooldestroy(BTSpool *btspool);
extern void _bt_spool(BTItem btitem, BTSpool *btspool);
-extern void _bt_leafbuild(BTSpool *btspool);
+extern void _bt_leafbuild(BTSpool *btspool, BTSpool *spool2);
#endif /* NBTREE_H */