From b5503e50c0068e14bbaf7f07e294a738e94adbb7 Mon Sep 17 00:00:00 2001 From: Tatsuo Ishii Date: Sat, 18 Feb 2023 16:34:14 +0900 Subject: [PATCH] Fix that show pool_version shows row description twice. test=# show pool_version; pool_version -------------- (0 rows) pool_version ----------------------- 4.3.5 (tamahomeboshi) (1 row) --- src/utils/pool_process_reporting.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/utils/pool_process_reporting.c b/src/utils/pool_process_reporting.c index 2ca671f1e..935440c46 100644 --- a/src/utils/pool_process_reporting.c +++ b/src/utils/pool_process_reporting.c @@ -1848,8 +1848,6 @@ version_reporting(POOL_CONNECTION * frontend, POOL_CONNECTION_POOL * backend) num_fields = sizeof(field_names) / sizeof(char *); version = get_version(); - send_row_description(frontend, backend, num_fields, field_names); - send_row_description_and_data_rows(frontend, backend, num_fields, field_names, offsettbl, (char *)version, sizeof(POOL_REPORT_VERSION), nrows); -- 2.39.5