summaryrefslogtreecommitdiff
path: root/src/backend/commands/explain.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/commands/explain.c')
-rw-r--r--src/backend/commands/explain.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/commands/explain.c b/src/backend/commands/explain.c
index 2d1bffce17..e28f9fdc63 100644
--- a/src/backend/commands/explain.c
+++ b/src/backend/commands/explain.c
@@ -51,7 +51,7 @@ ExplainQuery(Query *query, bool verbose, bool analyze, CommandDest dest)
/* rewriter and planner may not work in aborted state? */
if (IsAbortedTransactionBlockState())
{
- elog(NOTICE, "(transaction aborted): %s",
+ elog(WARNING, "(transaction aborted): %s",
"queries ignored until END");
return;
}
@@ -59,7 +59,7 @@ ExplainQuery(Query *query, bool verbose, bool analyze, CommandDest dest)
/* rewriter will not cope with utility statements */
if (query->commandType == CMD_UTILITY)
{
- elog(INFO, "Utility statements have no plan structure");
+ elog(NOTICE, "Utility statements have no plan structure");
return;
}
@@ -69,7 +69,7 @@ ExplainQuery(Query *query, bool verbose, bool analyze, CommandDest dest)
/* In the case of an INSTEAD NOTHING, tell at least that */
if (rewritten == NIL)
{
- elog(INFO, "Query rewrites to nothing");
+ elog(NOTICE, "Query rewrites to nothing");
return;
}