diff options
author | Tom Lane | 2006-06-16 23:50:48 +0000 |
---|---|---|
committer | Tom Lane | 2006-06-16 23:50:48 +0000 |
commit | 44cb3ae7efb9a2fe197a2a0287e919343f31f6d5 (patch) | |
tree | 026df64a59fc1eb8bee92cb47904bf06be51a6ea /src/backend/commands | |
parent | c892643a3c4645450e3f84d2e2266a4e46340d28 (diff) |
Fix a couple of obvious problems in DROP IF EXISTS patch.
Diffstat (limited to 'src/backend/commands')
-rw-r--r-- | src/backend/commands/aggregatecmds.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/backend/commands/aggregatecmds.c b/src/backend/commands/aggregatecmds.c index 7fb323a8b87..6b384471727 100644 --- a/src/backend/commands/aggregatecmds.c +++ b/src/backend/commands/aggregatecmds.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/commands/aggregatecmds.c,v 1.35 2006/06/16 20:23:44 adunstan Exp $ + * $PostgreSQL: pgsql/src/backend/commands/aggregatecmds.c,v 1.36 2006/06/16 23:50:48 tgl Exp $ * * DESCRIPTION * The "DefineFoo" routines take the parse tree and pick out the @@ -216,14 +216,9 @@ RemoveAggregate(RemoveFuncStmt *stmt) if (!OidIsValid(procOid)) { /* we only get here if stmt->missing_ok is true */ - - /* XXX might need better message here */ - ereport(NOTICE, (errmsg("aggregate %s does not exist ... skipping", - stmt->name))); - - + NameListToString(stmt->name)))); return; } |