Обсуждение: [COMMITTERS] pgsql: Fix output of char node fields

Поиск
Список
Период
Сортировка

[COMMITTERS] pgsql: Fix output of char node fields

От
Peter Eisentraut
Дата:
Fix output of char node fields

WRITE_CHAR_FIELD() didn't do any escaping, so that for example a zero
byte would cause the whole output string to be truncated.  To fix, pass
the char through outToken(), so it is escaped like a string.  Adjust the
reading side to handle this.

Branch
------
master

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

Modified Files
--------------
src/backend/nodes/outfuncs.c  | 20 +++++++++++++++++++-
src/backend/nodes/readfuncs.c |  3 ++-
2 files changed, 21 insertions(+), 2 deletions(-)