From: | Michael Paquier <michael(at)paquier(dot)xyz> |
---|---|
To: | pgsql-committers(at)lists(dot)postgresql(dot)org |
Subject: | pgsql: ecpg: Fix handling of strings in ORACLE compat code with SQLDA |
Date: | 2023-04-18 02:21:31 |
Message-ID: | E1poayI-003cfb-I8@gemulon.postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
ecpg: Fix handling of strings in ORACLE compat code with SQLDA
When compiled with -C ORACLE, ecpg_get_data() had a one-off issue where
it would incorrectly store the null terminator byte to str[-1] when
varcharsize is 0, which is something that can happen when using SQLDA.
This would eat 1 byte from the previous field stored, corrupting the
results generated.
All the callers of ecpg_get_data() estimate and allocate enough storage
for the data received, and the fix of this commit relies on this
assumption. Note that this maps to the case where no padding or
truncation is required.
This issue has been introduced by 3b7ab43 with the Oracle compatibility
option, so backpatch down to v11.
Author: Kyotaro Horiguchi
Discussion: https://postgr.es/m/20230410.173500.440060475837236886.horikyota.ntt@gmail.com
Backpatch-through: 11
Branch
------
REL_14_STABLE
Details
-------
https://git.postgresql.org/pg/commitdiff/02f0764546a9ce7f3d843e049bdfa790afa1cf4a
Modified Files
--------------
src/interfaces/ecpg/ecpglib/data.c | 19 +-
.../ecpg/test/compat_oracle/char_array.pgc | 31 ++-
.../ecpg/test/expected/compat_oracle-char_array.c | 216 +++++++++++++++------
.../test/expected/compat_oracle-char_array.stderr | 166 +++++++++-------
.../test/expected/compat_oracle-char_array.stdout | 5 +
5 files changed, 310 insertions(+), 127 deletions(-)
From | Date | Subject | |
---|---|---|---|
Next Message | Michael Paquier | 2023-04-18 03:03:45 | pgsql: ecpg: Avoid C99-ism in newly-added test for Oracle compat |
Previous Message | David Rowley | 2023-04-18 02:04:33 | pgsql: Fix some typos and some incorrectly duplicated words |