diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-08-19 01:53:39 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-08-19 01:53:39 +0000 |
commit | 3c47cdeb5a569fb8a4240e9008dd68f24cbc9213 (patch) | |
tree | 284e86ce2d8138ae910da7dc7565ac2def59b4fe /src/backend/commands/command.c | |
parent | f796387b602c8d0c538eba6b96bf86c399c4cd36 (diff) | |
download | postgresql-3c47cdeb5a569fb8a4240e9008dd68f24cbc9213.tar.gz postgresql-3c47cdeb5a569fb8a4240e9008dd68f24cbc9213.zip |
From: Dan McGuirk <mcguirk@indirect.com>
fixed the spelling of 'nonexistent' in a few places...
Diffstat (limited to 'src/backend/commands/command.c')
-rw-r--r-- | src/backend/commands/command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/command.c b/src/backend/commands/command.c index 4283b594d59..1091b0259c6 100644 --- a/src/backend/commands/command.c +++ b/src/backend/commands/command.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.1.1.1 1996/07/09 06:21:19 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.2 1996/08/19 01:53:37 scrappy Exp $ * * NOTES * The PortalExecutorHeapMemory crap needs to be eliminated @@ -473,7 +473,7 @@ PerformAddAttribute(char *relationName, form = (TypeTupleForm)GETSTRUCT(typeTuple); if (!HeapTupleIsValid(typeTuple)) { - elog(WARN, "Add: type \"%s\" nonexistant", p); + elog(WARN, "Add: type \"%s\" nonexistent", p); } namestrcpy(&(attribute->attname), (char*) key[1].sk_argument); attribute->atttypid = typeTuple->t_oid; |