From: Dan McGuirk <mcguirk@indirect.com>

fixed the spelling of 'nonexistent' in a few places...
REL2_0B
Marc G. Fournier 29 years ago
parent f796387b60
commit 3c47cdeb5a
  1. 4
      src/backend/commands/command.c
  2. 6
      src/backend/commands/defind.c
  3. 6
      src/backend/commands/remove.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;

@ -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) {

@ -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

Loading…
Cancel
Save