mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-02-17 19:30:00 +08:00
Remove unused parameter
unused since 93ee38eade
Discussion: https://www.postgresql.org/message-id/flat/511bb100-f829-ba21-2f10-9f952ec06ead%402ndquadrant.com
This commit is contained in:
parent
ac15b499f7
commit
96cfcadd26
@ -259,7 +259,7 @@ struct user_args
|
||||
* ------------------------------------------------------
|
||||
*/
|
||||
static Datum
|
||||
bt_page_print_tuples(FuncCallContext *fctx, struct user_args *uargs)
|
||||
bt_page_print_tuples(struct user_args *uargs)
|
||||
{
|
||||
Page page = uargs->page;
|
||||
OffsetNumber offset = uargs->offset;
|
||||
@ -498,7 +498,7 @@ bt_page_items(PG_FUNCTION_ARGS)
|
||||
|
||||
if (fctx->call_cntr < fctx->max_calls)
|
||||
{
|
||||
result = bt_page_print_tuples(fctx, uargs);
|
||||
result = bt_page_print_tuples(uargs);
|
||||
uargs->offset++;
|
||||
SRF_RETURN_NEXT(fctx, result);
|
||||
}
|
||||
@ -582,7 +582,7 @@ bt_page_items_bytea(PG_FUNCTION_ARGS)
|
||||
|
||||
if (fctx->call_cntr < fctx->max_calls)
|
||||
{
|
||||
result = bt_page_print_tuples(fctx, uargs);
|
||||
result = bt_page_print_tuples(uargs);
|
||||
uargs->offset++;
|
||||
SRF_RETURN_NEXT(fctx, result);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user