pgsql: Cache typlens of a SQL function's input arguments. - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Cache typlens of a SQL function's input arguments.
Date
Msg-id E1u5SYd-000Vjw-1r@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Cache typlens of a SQL function's input arguments.

This gets rid of repetitive get_typlen calls in postquel_sub_params,
which show up as costing a few percent of the runtime in simple test
cases (more with more parameters).

In combination with the preceding patches, this gets us most of the
way back down to the amount of per-call overhead that functions.c
had before commit 0dca5d68d.  There are some more things that could
be done, but this seems like an okay place to stop for v18.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/0400ae4a68831250347407463453447daa9548df

Modified Files
--------------
src/backend/executor/functions.c | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)


pgsql-committers by date:

Previous
From: Noah Misch
Date:
Subject: pgsql: Assert lack of hazardous buffer locks before possible catalog re
Next
From: Tom Lane
Date:
Subject: Re: pgsql: Make SQLFunctionCache long-lived again.