From c437850db5d60868f7814e0cb1bed1579464e4f8 Mon Sep 17 00:00:00 2001 From: gindibay Date: Tue, 24 Oct 2023 19:25:26 +0300 Subject: [PATCH] Beatufies error message --- src/backend/distributed/commands/utility_hook.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/distributed/commands/utility_hook.c b/src/backend/distributed/commands/utility_hook.c index 85ae27356..fc763f369 100644 --- a/src/backend/distributed/commands/utility_hook.c +++ b/src/backend/distributed/commands/utility_hook.c @@ -1266,9 +1266,9 @@ ExecuteDistributedDDLJob(DDLJob *ddlJob) ereport(WARNING, (errmsg( "Commands that are not transaction-safe may result in partial failure" - ", potentially leading to an inconsistent state. If the problematic command" + ", potentially leading to an inconsistent state.\nIf the problematic command" " is a CREATE operation, consider using the 'IF EXISTS' syntax to drop the " - "object, if applicable, and then reattempt the original command."))); + "object,\nif applicable, and then reattempt the original command."))); PG_RE_THROW(); } }