mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-30 19:00:29 +08:00
Remove unused parameter
unused since 84d723b6ce
Discussion: https://www.postgresql.org/message-id/flat/511bb100-f829-ba21-2f10-9f952ec06ead%402ndquadrant.com
This commit is contained in:
parent
e0f05cd5ba
commit
76af9744db
@ -49,7 +49,6 @@ static HTAB *load_categories_hash(char *cats_sql, MemoryContext per_query_ctx);
|
||||
static Tuplestorestate *get_crosstab_tuplestore(char *sql,
|
||||
HTAB *crosstab_hash,
|
||||
TupleDesc tupdesc,
|
||||
MemoryContext per_query_ctx,
|
||||
bool randomAccess);
|
||||
static void validateConnectbyTupleDesc(TupleDesc tupdesc, bool show_branch, bool show_serial);
|
||||
static bool compatCrosstabTupleDescs(TupleDesc tupdesc1, TupleDesc tupdesc2);
|
||||
@ -680,7 +679,6 @@ crosstab_hash(PG_FUNCTION_ARGS)
|
||||
rsinfo->setResult = get_crosstab_tuplestore(sql,
|
||||
crosstab_hash,
|
||||
tupdesc,
|
||||
per_query_ctx,
|
||||
rsinfo->allowedModes & SFRM_Materialize_Random);
|
||||
|
||||
/*
|
||||
@ -793,7 +791,6 @@ static Tuplestorestate *
|
||||
get_crosstab_tuplestore(char *sql,
|
||||
HTAB *crosstab_hash,
|
||||
TupleDesc tupdesc,
|
||||
MemoryContext per_query_ctx,
|
||||
bool randomAccess)
|
||||
{
|
||||
Tuplestorestate *tupstore;
|
||||
|
Loading…
Reference in New Issue
Block a user