diff options
author | Peter Eisentraut | 2020-09-04 06:02:58 +0000 |
---|---|---|
committer | Peter Eisentraut | 2020-09-04 06:08:23 +0000 |
commit | 96cfcadd26e26e138ae60f4f3f94beddafba60bb (patch) | |
tree | 31b74c8ac5a4a7b0a921c3519b6e7748996a5cec | |
parent | ac15b499f7f92c26661835c327bfb0228a9b5e73 (diff) |
Remove unused parameter
unused since 93ee38eade1b2b4964354b95b01b09e17d6f098d
Discussion: https://www.postgresql.org/message-id/flat/511bb100-f829-ba21-2f10-9f952ec06ead%402ndquadrant.com
-rw-r--r-- | contrib/pageinspect/btreefuncs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/pageinspect/btreefuncs.c b/contrib/pageinspect/btreefuncs.c index e7a323044bf..445605db58a 100644 --- a/contrib/pageinspect/btreefuncs.c +++ b/contrib/pageinspect/btreefuncs.c @@ -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); } |