Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 3c47cde

Browse files
committed
From: Dan McGuirk <mcguirk@indirect.com>
fixed the spelling of 'nonexistent' in a few places...
1 parent f796387 commit 3c47cde

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.2 1996/08/19 01:53:37 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.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 $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -504,7 +504,7 @@ GetDefaultOpClass(Oid atttypid)
504504
*
505505
* Exceptions:
506506
* BadArg if name is invalid.
507-
* "WARN" if index nonexistant.
507+
* "WARN" if index nonexistent.
508508
* ...
509509
*/
510510
void
@@ -517,7 +517,7 @@ RemoveIndex(char *name)
517517
0,0,0);
518518

519519
if (!HeapTupleIsValid(tuple)) {
520-
elog(WARN, "index \"%s\" nonexistant", name);
520+
elog(WARN, "index \"%s\" nonexistent", name);
521521
}
522522

523523
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.2 1996/08/19 01:53:39 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)