From def5b065ff22a16a80084587613599fe15627213 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Wed, 12 May 2021 13:14:10 -0400 Subject: Initial pgindent and pgperltidy run for v14. Also "make reformat-dat-files". The only change worthy of note is that pgindent messed up the formatting of launcher.c's struct LogicalRepWorkerId, which led me to notice that that struct wasn't used at all anymore, so I just took it out. --- src/backend/tcop/postgres.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/backend/tcop/postgres.c') diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 2d6d145ecc0..6200699ddd7 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -454,7 +454,7 @@ SocketBackend(StringInfo inBuf) * the type. */ if (pq_getmessage(inBuf, maxmsglen)) - return EOF; /* suitable message already logged */ + return EOF; /* suitable message already logged */ RESUME_CANCEL_INTERRUPTS(); return qtype; @@ -1350,8 +1350,8 @@ exec_parse_message(const char *query_string, /* string to execute */ ereport(DEBUG2, (errmsg_internal("parse %s: %s", - *stmt_name ? stmt_name : "", - query_string))); + *stmt_name ? stmt_name : "", + query_string))); /* * Start up a transaction command so we can run parse analysis etc. (Note @@ -1606,8 +1606,8 @@ exec_bind_message(StringInfo input_message) ereport(DEBUG2, (errmsg_internal("bind %s to %s", - *portal_name ? portal_name : "", - *stmt_name ? stmt_name : ""))); + *portal_name ? portal_name : "", + *stmt_name ? stmt_name : ""))); /* Find prepared statement */ if (stmt_name[0] != '\0') -- cgit v1.2.3