]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Have pg_itoa, pg_ltoa and pg_lltoa return the length of the string
authorDavid Rowley <drowley@postgresql.org>
Sat, 13 Jun 2020 00:32:00 +0000 (12:32 +1200)
committerDavid Rowley <drowley@postgresql.org>
Sat, 13 Jun 2020 00:32:00 +0000 (12:32 +1200)
commitdad75eb4a8d5835ecc795d7a7978e7702e4d5912
tree8d0f2778f3c6f60e1343b585818d408d18881f14
parent9a7fccd9eac85726ced3f3794a743eeab447f334
Have pg_itoa, pg_ltoa and pg_lltoa return the length of the string

Core by no means makes excessive use of these functions, but quite a large
number of those usages do require the caller to call strlen() on the
returned string.  This is quite wasteful since these functions do already
have a good idea of the length of the string, so we might as well just
have them return that.

Reviewed-by: Andrew Gierth
Discussion: https://postgr.es/m/CAApHDvrm2A5x2uHYxsqriO2cUaGcFvND%2BksC9e7Tjep0t2RK_A%40mail.gmail.com
src/backend/access/common/printsimple.c
src/backend/utils/adt/int.c
src/backend/utils/adt/int8.c
src/backend/utils/adt/numutils.c
src/include/utils/builtins.h