pgsql: Report better object limits in error messages for injection poin - Mailing list pgsql-committers

From Michael Paquier
Subject pgsql: Report better object limits in error messages for injection poin
Date
Msg-id E1vIzWj-0069Ui-13@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Report better object limits in error messages for injection points

Previously, error messages for oversized injection point names, libraries,
and functions showed buffer sizes (64, 128, 128) instead of the usable
character limits (63, 127, 127) as it did not count for the
zero-terminated byte, which was confusing.  These messages are adjusted
to show better the reality.

The limit enforced for the private area was also too strict by one byte,
as specifying a zone worth exactly INJ_PRIVATE_MAXLEN should be able to
work because three is no zero-terminated byte in this case.

This is a stylistic change (well, mostly, a private_area size of exactly
1024 bytes can be defined with this change, something that nobody seem
to care about based on the lack of complaints).  However, this is a
testing facility let's keep the logic consistent across all the branches
where this code exists, as there is an argument in favor of out-of-core
extensions that use injection points.

Author: Xuneng Zhou <xunengzhou@gmail.com>
Co-authored-by: Michael Paquier <michael@paquier.xyz>
Discussion: https://postgr.es/m/CABPTF7VxYp4Hny1h+7ejURY-P4O5-K8WZg79Q3GUx13cQ6B2kg@mail.gmail.com
Backpatch-through: 17

Branch
------
REL_17_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/f30cd34b3fd01a7d59080a7d074a1d2c6c670b12

Modified Files
--------------
src/backend/utils/misc/injection_point.c | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)


pgsql-committers by date:

Previous
From: Michael Paquier
Date:
Subject: pgsql: Add check for large files in meson.build
Next
From: Michael Paquier
Date:
Subject: pgsql: injection_points: Add tests for name limits