]> granicus.if.org Git - postgresql/commitdiff
From: Dan McGuirk <mcguirk@indirect.com>
authorMarc G. Fournier <scrappy@hub.org>
Mon, 19 Aug 1996 01:53:39 +0000 (01:53 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Mon, 19 Aug 1996 01:53:39 +0000 (01:53 +0000)
fixed the spelling of 'nonexistent' in a few places...

src/backend/commands/command.c
src/backend/commands/defind.c
src/backend/commands/remove.c

index 4283b594d59b33d28a8116849dd8cc0ceeec5e54..1091b0259c691c8f20253961d29323746b8b8c28 100644 (file)
@@ -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;
index 22e971829eaa36684d245ec65e84fdde0819cb69..e350927da0b01a50275456ae4ca8dd97abcaf917 100644 (file)
@@ -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) {
index 95830c6cc084f5679639736a14c7305bc1039f13..b7defda8526e456230a6355c62760a8e5918de58 100644 (file)
@@ -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