File tree 3 files changed +8
-8
lines changed
3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.1.1.1 1996/07/09 06:21:19 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.2 1996/08/19 01:53:37 scrappy Exp $
11
11
*
12
12
* NOTES
13
13
* The PortalExecutorHeapMemory crap needs to be eliminated
@@ -473,7 +473,7 @@ PerformAddAttribute(char *relationName,
473
473
form = (TypeTupleForm )GETSTRUCT (typeTuple );
474
474
475
475
if (!HeapTupleIsValid (typeTuple )) {
476
- elog (WARN , "Add: type \"%s\" nonexistant " , p );
476
+ elog (WARN , "Add: type \"%s\" nonexistent " , p );
477
477
}
478
478
namestrcpy (& (attribute -> attname ), (char * ) key [1 ].sk_argument );
479
479
attribute -> atttypid = typeTuple -> t_oid ;
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/commands/Attic/defind.c,v 1.2 1996/08/15 07:42:19 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/commands/Attic/defind.c,v 1.3 1996/08/19 01:53:38 scrappy Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -504,7 +504,7 @@ GetDefaultOpClass(Oid atttypid)
504
504
*
505
505
* Exceptions:
506
506
* BadArg if name is invalid.
507
- * "WARN" if index nonexistant .
507
+ * "WARN" if index nonexistent .
508
508
* ...
509
509
*/
510
510
void
@@ -517,7 +517,7 @@ RemoveIndex(char *name)
517
517
0 ,0 ,0 );
518
518
519
519
if (!HeapTupleIsValid (tuple )) {
520
- elog (WARN , "index \"%s\" nonexistant " , name );
520
+ elog (WARN , "index \"%s\" nonexistent " , name );
521
521
}
522
522
523
523
if (((Form_pg_class )GETSTRUCT (tuple ))-> relkind != RELKIND_INDEX ) {
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/commands/Attic/remove.c,v 1.1.1.1 1996/07/09 06:21:22 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/commands/Attic/remove.c,v 1.2 1996/08/19 01:53:39 scrappy Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
43
43
* Exceptions:
44
44
* BadArg if name is invalid.
45
45
* BadArg if type1 is invalid.
46
- * "WARN" if operator nonexistant .
46
+ * "WARN" if operator nonexistent .
47
47
* ...
48
48
*/
49
49
void
@@ -307,7 +307,7 @@ RemoveType(char *typeName) /* type name to be removed */
307
307
*
308
308
* Exceptions:
309
309
* BadArg if name is invalid.
310
- * "WARN" if function nonexistant .
310
+ * "WARN" if function nonexistent .
311
311
* ...
312
312
*/
313
313
void
You can’t perform that action at this time.
0 commit comments