File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 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.1.1.1.2.1 1996/08/19 01:13:49 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.1.1.1 1996/07/09 06:21:20 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/commands/Attic/defind.c,v 1.1.1.1.2.1 1996/08/19 01:13:50 scrappy Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -479,7 +479,7 @@ NormIndexAttrs(List *attList, /* list of IndexElem's */
479
479
*
480
480
* Exceptions:
481
481
* BadArg if name is invalid.
482
- * "WARN" if index nonexistant .
482
+ * "WARN" if index nonexistent .
483
483
* ...
484
484
*/
485
485
void
@@ -492,7 +492,7 @@ RemoveIndex(char *name)
492
492
0 ,0 ,0 );
493
493
494
494
if (!HeapTupleIsValid (tuple )) {
495
- elog (WARN , "index \"%s\" nonexistant " , name );
495
+ elog (WARN , "index \"%s\" nonexistent " , name );
496
496
}
497
497
498
498
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.1.1.1.2.1 1996/08/19 01:13:51 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