Beatufies error message

pull/7240/head
gindibay 2023-10-24 19:25:26 +03:00
parent 48d749e2e8
commit c437850db5
1 changed files with 2 additions and 2 deletions

View File

@ -1266,9 +1266,9 @@ ExecuteDistributedDDLJob(DDLJob *ddlJob)
ereport(WARNING, ereport(WARNING,
(errmsg( (errmsg(
"Commands that are not transaction-safe may result in partial failure" "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 " " 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(); PG_RE_THROW();
} }
} }