mirror of
https://github.com/postgres/postgres.git
synced 2025-11-12 05:01:15 +03:00
From: Dan McGuirk <mcguirk@indirect.com>
fixed the spelling of 'nonexistent' in a few places...
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* 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 $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -504,7 +504,7 @@ GetDefaultOpClass(Oid atttypid)
|
||||
*
|
||||
* Exceptions:
|
||||
* BadArg if name is invalid.
|
||||
* "WARN" if index nonexistant.
|
||||
* "WARN" if index nonexistent.
|
||||
* ...
|
||||
*/
|
||||
void
|
||||
@@ -517,7 +517,7 @@ RemoveIndex(char *name)
|
||||
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) {
|
||||
|
||||
Reference in New Issue
Block a user