From 3c47cdeb5a569fb8a4240e9008dd68f24cbc9213 Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Mon, 19 Aug 1996 01:53:39 +0000 Subject: [PATCH] From: Dan McGuirk fixed the spelling of 'nonexistent' in a few places... --- src/backend/commands/command.c | 4 ++-- src/backend/commands/defind.c | 6 +++--- src/backend/commands/remove.c | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/backend/commands/command.c b/src/backend/commands/command.c index 4283b594d5..1091b0259c 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; diff --git a/src/backend/commands/defind.c b/src/backend/commands/defind.c index 22e971829e..e350927da0 100644 --- a/src/backend/commands/defind.c +++ b/src/backend/commands/defind.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/Attic/defind.c,v 1.2 1996/08/15 07:42:19 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/Attic/defind.c,v 1.3 1996/08/19 01:53:38 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -504,7 +504,7 @@ GetDefaultOpClass(Oid atttypid) * * Exceptions: * BadArg if name is invalid. - * "WARN" if index nonexistant. + * "WARN" if index nonexistent. * ... */ void @@ -517,7 +517,7 @@ RemoveIndex(char *name) 0,0,0); if (!HeapTupleIsValid(tuple)) { - elog(WARN, "index \"%s\" nonexistant", name); + elog(WARN, "index \"%s\" nonexistent", name); } if (((Form_pg_class)GETSTRUCT(tuple))->relkind != RELKIND_INDEX) { diff --git a/src/backend/commands/remove.c b/src/backend/commands/remove.c index 95830c6cc0..b7defda852 100644 --- a/src/backend/commands/remove.c +++ b/src/backend/commands/remove.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/Attic/remove.c,v 1.1.1.1 1996/07/09 06:21:22 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/Attic/remove.c,v 1.2 1996/08/19 01:53:39 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -43,7 +43,7 @@ * Exceptions: * BadArg if name is invalid. * BadArg if type1 is invalid. - * "WARN" if operator nonexistant. + * "WARN" if operator nonexistent. * ... */ void @@ -307,7 +307,7 @@ RemoveType(char *typeName) /* type name to be removed */ * * Exceptions: * BadArg if name is invalid. - * "WARN" if function nonexistant. + * "WARN" if function nonexistent. * ... */ void -- 2.40.0