Thread: pgsql: Skip trailing whitespaces when parsing integer options

pgsql: Skip trailing whitespaces when parsing integer options

From
Michael Paquier
Date:
Skip trailing whitespaces when parsing integer options

strtoint(), via strtol(), would skip leading whitespaces but the same
rule was not applied for trailing whitespaces, leading to an
inconsistent behavior.  Some tests are changed to cover more this area.

Author: Michael Paquier
Reviewed-by: Kyotaro Horiguchi
Discussion: https://postgr.es/m/YP5Pv0d13Ct+03ve@paquier.xyz

Branch
------
master

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

Modified Files
--------------
src/bin/pg_basebackup/t/020_pg_receivewal.pl | 4 +++-
src/bin/pg_dump/t/001_basic.pl               | 3 ++-
src/fe_utils/option_utils.c                  | 9 ++++++++-
3 files changed, 13 insertions(+), 3 deletions(-)