Skip to content

Commit 817bf55

Browse files
committed
|From: Dan McGuirk <mcguirk@indirect.com>
| |fixed the spelling of 'nonexistent' in a few places... |
1 parent e38de38 commit 817bf55

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

src/backend/commands/command.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* 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 $
1111
*
1212
* NOTES
1313
* The PortalExecutorHeapMemory crap needs to be eliminated
@@ -473,7 +473,7 @@ PerformAddAttribute(char *relationName,
473473
form = (TypeTupleForm)GETSTRUCT(typeTuple);
474474

475475
if (!HeapTupleIsValid(typeTuple)) {
476-
elog(WARN, "Add: type \"%s\" nonexistant", p);
476+
elog(WARN, "Add: type \"%s\" nonexistent", p);
477477
}
478478
namestrcpy(&(attribute->attname), (char*) key[1].sk_argument);
479479
attribute->atttypid = typeTuple->t_oid;

src/backend/commands/defind.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* 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 $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -479,7 +479,7 @@ NormIndexAttrs(List *attList, /* list of IndexElem's */
479479
*
480480
* Exceptions:
481481
* BadArg if name is invalid.
482-
* "WARN" if index nonexistant.
482+
* "WARN" if index nonexistent.
483483
* ...
484484
*/
485485
void
@@ -492,7 +492,7 @@ RemoveIndex(char *name)
492492
0,0,0);
493493

494494
if (!HeapTupleIsValid(tuple)) {
495-
elog(WARN, "index \"%s\" nonexistant", name);
495+
elog(WARN, "index \"%s\" nonexistent", name);
496496
}
497497

498498
if (((Form_pg_class)GETSTRUCT(tuple))->relkind != RELKIND_INDEX) {

src/backend/commands/remove.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* 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 $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -43,7 +43,7 @@
4343
* Exceptions:
4444
* BadArg if name is invalid.
4545
* BadArg if type1 is invalid.
46-
* "WARN" if operator nonexistant.
46+
* "WARN" if operator nonexistent.
4747
* ...
4848
*/
4949
void
@@ -307,7 +307,7 @@ RemoveType(char *typeName) /* type name to be removed */
307307
*
308308
* Exceptions:
309309
* BadArg if name is invalid.
310-
* "WARN" if function nonexistant.
310+
* "WARN" if function nonexistent.
311311
* ...
312312
*/
313313
void

0 commit comments

Comments
 (0)