diff options
Diffstat (limited to 'src/backend/parser')
-rw-r--r-- | src/backend/parser/analyze.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/backend/parser/analyze.c b/src/backend/parser/analyze.c index 4d1cd28f123..d6fbc6b3d76 100644 --- a/src/backend/parser/analyze.c +++ b/src/backend/parser/analyze.c @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Header: /cvsroot/pgsql/src/backend/parser/analyze.c,v 1.289 2003/09/26 15:27:32 petere Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/analyze.c,v 1.290 2003/10/02 06:32:45 petere Exp $ * *------------------------------------------------------------------------- */ @@ -1565,10 +1565,6 @@ transformFKConstraints(ParseState *pstate, CreateStmtContext *cxt, if (cxt->fkconstraints == NIL) return; - ereport(NOTICE, - (errmsg("%s will create implicit triggers for foreign-key checks", - cxt->stmtType))); - /* * For ALTER TABLE ADD CONSTRAINT, nothing to do. For CREATE TABLE or * ALTER TABLE ADD COLUMN, gin up an ALTER TABLE ADD CONSTRAINT |