Commit 614cdeaa authored by Peter Geoghegan's avatar Peter Geoghegan

Reorder two nbtree.h function prototypes.

Make the function prototype order consistent with the definition order
in nbtinsert.c.
parent 1b9becd4
...@@ -730,8 +730,8 @@ extern void _bt_parallel_advance_array_keys(IndexScanDesc scan); ...@@ -730,8 +730,8 @@ extern void _bt_parallel_advance_array_keys(IndexScanDesc scan);
*/ */
extern bool _bt_doinsert(Relation rel, IndexTuple itup, extern bool _bt_doinsert(Relation rel, IndexTuple itup,
IndexUniqueCheck checkUnique, Relation heapRel); IndexUniqueCheck checkUnique, Relation heapRel);
extern Buffer _bt_getstackbuf(Relation rel, BTStack stack, BlockNumber child);
extern void _bt_finish_split(Relation rel, Buffer bbuf, BTStack stack); extern void _bt_finish_split(Relation rel, Buffer bbuf, BTStack stack);
extern Buffer _bt_getstackbuf(Relation rel, BTStack stack, BlockNumber child);
/* /*
* prototypes for functions in nbtsplitloc.c * prototypes for functions in nbtsplitloc.c
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment