pgsql: Fixup various StringInfo function usages

Поиск
Список
Период
Сортировка
От David Rowley
Тема pgsql: Fixup various StringInfo function usages
Дата
Msg-id E1ruLI9-001MGu-Br@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fixup various StringInfo function usages

This adjusts various appendStringInfo* function calls to use a more
appropriate and efficient function with the same behavior.  For example,
use appendStringInfoChar() when appending a single character rather than
appendStringInfo() and appendStringInfoString() when no formatting is
required rather than using appendStringInfo().

All adjustments made here are in code that's new to v17, so it makes
sense to fix these now rather than wait a few years and make
backpatching harder.

Discussion: https://postgr.es/m/CAApHDvojY2UvMiO+9_55ArTj10P1LBNJyyoGB+C65BLDNT0GsQ@mail.gmail.com
Reviewed-by: Nathan Bossart, Tom Lane

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/8461424fd717877ead0706984ef9b6440b2a97ad

Modified Files
--------------
contrib/postgres_fdw/deparse.c              |  4 ++--
src/backend/replication/logical/slotsync.c  |  2 +-
src/backend/replication/logical/tablesync.c |  2 +-
src/backend/utils/adt/ri_triggers.c         |  8 ++++----
src/backend/utils/adt/ruleutils.c           | 20 ++++++++++----------
5 files changed, 18 insertions(+), 18 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Alexander Korotkov
Дата:
Сообщение: pgsql: revert: Transform OR clauses to ANY expression
Следующее
От: Thomas Munro
Дата:
Сообщение: pgsql: Fix illegal attribute propagation in LLVM JIT.