Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 96cfcad

Browse files
committed
1 parent ac15b49 commit 96cfcad

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

contrib/pageinspect/btreefuncs.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ struct user_args
259259
* ------------------------------------------------------
260260
*/
261261
static Datum
262-
bt_page_print_tuples(FuncCallContext *fctx, struct user_args *uargs)
262+
bt_page_print_tuples(struct user_args *uargs)
263263
{
264264
Page page = uargs->page;
265265
OffsetNumber offset = uargs->offset;
@@ -498,7 +498,7 @@ bt_page_items(PG_FUNCTION_ARGS)
498498

499499
if (fctx->call_cntr < fctx->max_calls)
500500
{
501-
result = bt_page_print_tuples(fctx, uargs);
501+
result = bt_page_print_tuples(uargs);
502502
uargs->offset++;
503503
SRF_RETURN_NEXT(fctx, result);
504504
}
@@ -582,7 +582,7 @@ bt_page_items_bytea(PG_FUNCTION_ARGS)
582582

583583
if (fctx->call_cntr < fctx->max_calls)
584584
{
585-
result = bt_page_print_tuples(fctx, uargs);
585+
result = bt_page_print_tuples(uargs);
586586
uargs->offset++;
587587
SRF_RETURN_NEXT(fctx, result);
588588
}

0 commit comments

Comments
 (0)