| From: | Heikki Linnakangas <heikki(dot)linnakangas(at)iki(dot)fi> |
|---|---|
| To: | pgsql-committers(at)lists(dot)postgresql(dot)org |
| Subject: | pgsql: Use strtoi64() in pgbench, replacing its open-coded implementati |
| Date: | 2025-11-21 13:08:33 |
| Message-ID: | E1vMQsL-000do1-16@gemulon.postgresql.org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-committers |
Use strtoi64() in pgbench, replacing its open-coded implementation
Makes the code a little simpler.
The old implementation accepted trailing whitespace, but that was
unnecessary. Firstly, its sibling function for parsing decimals,
strtodouble(), does not accept trailing whitespace. Secondly, none of
the callers can pass a string with trailing whitespace to it.
In the passing, check specifically for ERANGE before printing the "out
of range" error. On some systems, strtoul() and strtod() return EINVAL
on an empty or all-spaces string, and "invalid input syntax" is more
appropriate for that than "out of range". For the existing
strtodouble() function this is purely academical because it's never
called with errorOK==false, but let's be tidy. (Perhaps we should
remove the dead codepaths altogether, but I'll leave that for another
day.)
Reviewed-by: Chao Li <li(dot)evan(dot)chao(at)gmail(dot)com>
Reviewed-by: Yuefei Shi <shiyuefei1004(at)gmail(dot)com>
Reviewed-by: Neil Chen <carpenter(dot)nail(dot)cz(at)gmail(dot)com>
Discussion: https://www.postgresql.org/message-id/861dd5bd-f2c9-4ff5-8aa0-f82bdb75ec1f@iki.fi
Branch
------
master
Details
-------
https://git.postgresql.org/pg/commitdiff/2aabaa52dffdb78fbefaef95163881c15e18ef29
Modified Files
--------------
src/bin/pgbench/pgbench.c | 83 +++++++++++------------------------------------
1 file changed, 19 insertions(+), 64 deletions(-)
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Peter Eisentraut | 2025-11-21 15:57:27 | pgsql: Remove useless casts to (void *) |
| Previous Message | Peter Eisentraut | 2025-11-21 12:14:55 | pgsql: Update timezone to C99 |