File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -259,7 +259,7 @@ struct user_args
259
259
* ------------------------------------------------------
260
260
*/
261
261
static Datum
262
- bt_page_print_tuples (FuncCallContext * fctx , struct user_args * uargs )
262
+ bt_page_print_tuples (struct user_args * uargs )
263
263
{
264
264
Page page = uargs -> page ;
265
265
OffsetNumber offset = uargs -> offset ;
@@ -498,7 +498,7 @@ bt_page_items(PG_FUNCTION_ARGS)
498
498
499
499
if (fctx -> call_cntr < fctx -> max_calls )
500
500
{
501
- result = bt_page_print_tuples (fctx , uargs );
501
+ result = bt_page_print_tuples (uargs );
502
502
uargs -> offset ++ ;
503
503
SRF_RETURN_NEXT (fctx , result );
504
504
}
@@ -582,7 +582,7 @@ bt_page_items_bytea(PG_FUNCTION_ARGS)
582
582
583
583
if (fctx -> call_cntr < fctx -> max_calls )
584
584
{
585
- result = bt_page_print_tuples (fctx , uargs );
585
+ result = bt_page_print_tuples (uargs );
586
586
uargs -> offset ++ ;
587
587
SRF_RETURN_NEXT (fctx , result );
588
588
}
You can’t perform that action at this time.
0 commit comments