fixed the spelling of 'nonexistent' in a few places...
*
*
* 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
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;
*
*
* 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 $
*
*-------------------------------------------------------------------------
*/
*
* Exceptions:
* BadArg if name is invalid.
- * "WARN" if index nonexistant.
+ * "WARN" if index nonexistent.
* ...
*/
void
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) {
*
*
* 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 $
*
*-------------------------------------------------------------------------
*/
* Exceptions:
* BadArg if name is invalid.
* BadArg if type1 is invalid.
- * "WARN" if operator nonexistant.
+ * "WARN" if operator nonexistent.
* ...
*/
void
*
* Exceptions:
* BadArg if name is invalid.
- * "WARN" if function nonexistant.
+ * "WARN" if function nonexistent.
* ...
*/
void