projects
/
users
/
rhaas
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fe97c61
)
Normalize _bt_finish_split() argument names.
author
Peter Geoghegan
<
[email protected]
>
Mon, 23 Dec 2019 04:07:45 +0000
(20:07 -0800)
committer
Peter Geoghegan
<
[email protected]
>
Mon, 23 Dec 2019 04:07:45 +0000
(20:07 -0800)
Make a function prototype argument's name match the function
definition's argument name.
src/include/access/nbtree.h
patch
|
blob
|
blame
|
history
diff --git
a/src/include/access/nbtree.h
b/src/include/access/nbtree.h
index ef1eba060265378887778da6c35db28a14c9b810..5e56aac63f3dc41c833a4746c90cb63a684a6088 100644
(file)
--- a/
src/include/access/nbtree.h
+++ b/
src/include/access/nbtree.h
@@
-748,7
+748,7
@@
extern void _bt_parallel_advance_array_keys(IndexScanDesc scan);
*/
extern bool _bt_doinsert(Relation rel, IndexTuple itup,
IndexUniqueCheck checkUnique, Relation heapRel);
-extern void _bt_finish_split(Relation rel, Buffer
b
buf, BTStack stack);
+extern void _bt_finish_split(Relation rel, Buffer
l
buf, BTStack stack);
extern Buffer _bt_getstackbuf(Relation rel, BTStack stack, BlockNumber child);
/*