pgsql: Move any code specific to log_destination=csvlog to its own file

Поиск
Список
Период
Сортировка
От Michael Paquier
Тема pgsql: Move any code specific to log_destination=csvlog to its own file
Дата
Msg-id E1n7WkV-0007O2-Ab@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Move any code specific to log_destination=csvlog to its own file

The recent refactoring done in ac7c807 makes this move possible and
simple, as this just moves some code around.  This reduces the size of
elog.c by 7%.

Author: Michael Paquier, Sehrope Sarkuni
Reviewed-by: Nathan Bossart
Discussion: https://postgr.es/m/CAH7T-aqswBM6JWe4pDehi1uOiufqe06DJWaU5=X7dDLyqUExHg@mail.gmail.com

simply moves the routines related to csvlog into their own file

Branch
------
master

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

Modified Files
--------------
src/backend/utils/error/Makefile |   1 +
src/backend/utils/error/csvlog.c | 264 +++++++++++++++++++++++++++++++++++++++
src/backend/utils/error/elog.c   | 231 ----------------------------------
3 files changed, 265 insertions(+), 231 deletions(-)


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

Предыдущее
От: Michael Paquier
Дата:
Сообщение: pgsql: Refactor set of routines specific to elog.c
Следующее
От: Peter Eisentraut
Дата:
Сообщение: pgsql: ecpg: Catch zero-length Unicode identifiers correctly