File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -259,7 +259,7 @@ struct user_args
259259 * ------------------------------------------------------
260260 */
261261static 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 }
You can’t perform that action at this time.
0 commit comments