Commit 3c47cdeb authored by Marc G. Fournier's avatar Marc G. Fournier

From: Dan McGuirk <mcguirk@indirect.com>

fixed the spelling of 'nonexistent' in a few places...
parent f796387b
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * 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 * NOTES
* The PortalExecutorHeapMemory crap needs to be eliminated * The PortalExecutorHeapMemory crap needs to be eliminated
...@@ -473,7 +473,7 @@ PerformAddAttribute(char *relationName, ...@@ -473,7 +473,7 @@ PerformAddAttribute(char *relationName,
form = (TypeTupleForm)GETSTRUCT(typeTuple); form = (TypeTupleForm)GETSTRUCT(typeTuple);
if (!HeapTupleIsValid(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); namestrcpy(&(attribute->attname), (char*) key[1].sk_argument);
attribute->atttypid = typeTuple->t_oid; attribute->atttypid = typeTuple->t_oid;
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * 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) ...@@ -504,7 +504,7 @@ GetDefaultOpClass(Oid atttypid)
* *
* Exceptions: * Exceptions:
* BadArg if name is invalid. * BadArg if name is invalid.
* "WARN" if index nonexistant. * "WARN" if index nonexistent.
* ... * ...
*/ */
void void
...@@ -517,7 +517,7 @@ RemoveIndex(char *name) ...@@ -517,7 +517,7 @@ RemoveIndex(char *name)
0,0,0); 0,0,0);
if (!HeapTupleIsValid(tuple)) { if (!HeapTupleIsValid(tuple)) {
elog(WARN, "index \"%s\" nonexistant", name); elog(WARN, "index \"%s\" nonexistent", name);
} }
if (((Form_pg_class)GETSTRUCT(tuple))->relkind != RELKIND_INDEX) { if (((Form_pg_class)GETSTRUCT(tuple))->relkind != RELKIND_INDEX) {
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * 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 @@ ...@@ -43,7 +43,7 @@
* Exceptions: * Exceptions:
* BadArg if name is invalid. * BadArg if name is invalid.
* BadArg if type1 is invalid. * BadArg if type1 is invalid.
* "WARN" if operator nonexistant. * "WARN" if operator nonexistent.
* ... * ...
*/ */
void void
...@@ -307,7 +307,7 @@ RemoveType(char *typeName) /* type name to be removed */ ...@@ -307,7 +307,7 @@ RemoveType(char *typeName) /* type name to be removed */
* *
* Exceptions: * Exceptions:
* BadArg if name is invalid. * BadArg if name is invalid.
* "WARN" if function nonexistant. * "WARN" if function nonexistent.
* ... * ...
*/ */
void void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment