summaryrefslogtreecommitdiff
path: root/src/backend/commands/opclasscmds.c
diff options
context:
space:
mode:
authorRobert Haas2011-10-20 03:45:31 +0000
committerRobert Haas2011-10-20 03:45:31 +0000
commit1d751018d881f415a61787424d900ae8a7126da3 (patch)
tree3ac645c6f27806680626187e9e49a409aff98081 /src/backend/commands/opclasscmds.c
parent0bf08994934d8e561c2cacc4fb4fc7e7eb602d2e (diff)
Add "skipping" to the NOTICE produced by DROP OPERATOR CLASS IF EXISTS.
This makes this message consistent with all the other similar notices produced by other DROP IF EXISTS commands. Noted by KaiGai Kohei
Diffstat (limited to 'src/backend/commands/opclasscmds.c')
-rw-r--r--src/backend/commands/opclasscmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/opclasscmds.c b/src/backend/commands/opclasscmds.c
index 3dbc9329267..5dde78abc9a 100644
--- a/src/backend/commands/opclasscmds.c
+++ b/src/backend/commands/opclasscmds.c
@@ -1564,7 +1564,7 @@ RemoveOpClass(RemoveOpClassStmt *stmt)
if (!HeapTupleIsValid(tuple))
{
ereport(NOTICE,
- (errmsg("operator class \"%s\" does not exist for access method \"%s\"",
+ (errmsg("operator class \"%s\" does not exist for access method \"%s\", skipping",
NameListToString(stmt->opclassname), stmt->amname)));
return;
}