mirror of
https://github.com/postgres/postgres.git
synced 2025-07-08 11:42:09 +03:00
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
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user