Change warning message in pg_signal_backend()

Relevant PG commit:
7fa945b857cc1b2964799411f1633468826861ff
version-15-socket
naisila 2022-07-28 16:21:50 +03:00
parent c55c91c003
commit ea15caf369
2 changed files with 5 additions and 2 deletions

View File

@ -116,6 +116,9 @@ s/(ERROR: |WARNING: |error:) server closed the connection unexpectedly/\1 connec
/^\s*connection not open$/d /^\s*connection not open$/d
#endif /* (PG_VERSION_NUM >= PG_VERSION_13) && (PG_VERSION_NUM < PG_VERSION_14) */ #endif /* (PG_VERSION_NUM >= PG_VERSION_13) && (PG_VERSION_NUM < PG_VERSION_14) */
# pg15 changes
s/is not a PostgreSQL server process/is not a PostgreSQL backend process/g
# intermediate_results # intermediate_results
s/(ERROR.*)pgsql_job_cache\/([0-9]+_[0-9]+_[0-9]+)\/(.*).data/\1pgsql_job_cache\/xx_x_xxx\/\3.data/g s/(ERROR.*)pgsql_job_cache\/([0-9]+_[0-9]+_[0-9]+)\/(.*).data/\1pgsql_job_cache\/xx_x_xxx\/\3.data/g

View File

@ -64,7 +64,7 @@ ERROR: canceling statement due to user request
SET client_min_messages TO DEBUG; SET client_min_messages TO DEBUG;
-- 10000000000 is the node id multiplier for global pid -- 10000000000 is the node id multiplier for global pid
SELECT pg_cancel_backend(10000000000 * citus_coordinator_nodeid() + 0); SELECT pg_cancel_backend(10000000000 * citus_coordinator_nodeid() + 0);
DEBUG: PID 0 is not a PostgreSQL server process DEBUG: PID 0 is not a PostgreSQL backend process
DETAIL: from localhost:xxxxx DETAIL: from localhost:xxxxx
pg_cancel_backend pg_cancel_backend
--------------------------------------------------------------------- ---------------------------------------------------------------------
@ -72,7 +72,7 @@ DETAIL: from localhost:xxxxx
(1 row) (1 row)
SELECT pg_terminate_backend(10000000000 * citus_coordinator_nodeid() + 0); SELECT pg_terminate_backend(10000000000 * citus_coordinator_nodeid() + 0);
DEBUG: PID 0 is not a PostgreSQL server process DEBUG: PID 0 is not a PostgreSQL backend process
DETAIL: from localhost:xxxxx DETAIL: from localhost:xxxxx
pg_terminate_backend pg_terminate_backend
--------------------------------------------------------------------- ---------------------------------------------------------------------