diff options
| author | Tom Lane | 2003-01-23 15:18:50 +0000 |
|---|---|---|
| committer | Tom Lane | 2003-01-23 15:18:50 +0000 |
| commit | a825ad2bda778524dde58143a98237b242268b2e (patch) | |
| tree | 07708aa813c5903008fdd9f43144d01d6312fe9b /src/backend/commands | |
| parent | 01376c215c4ec02e05fe0b8f543b178666f57535 (diff) | |
Fix obsolete error message (isImmutable doesn't exist).
Diffstat (limited to 'src/backend/commands')
| -rw-r--r-- | src/backend/commands/indexcmds.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/commands/indexcmds.c b/src/backend/commands/indexcmds.c index 5447780b69e..56f63618f67 100644 --- a/src/backend/commands/indexcmds.c +++ b/src/backend/commands/indexcmds.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.92 2002/10/21 22:06:19 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.92.2.1 2003/01/23 15:18:50 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -258,7 +258,7 @@ CheckPredicate(List *predList, List *rangeTable, Oid baseRelOid) * reasons that we don't allow a functional index to use one. */ if (contain_mutable_functions((Node *) predList)) - elog(ERROR, "Functions in index predicate must be marked isImmutable"); + elog(ERROR, "Functions in index predicate must be marked IMMUTABLE"); } @@ -347,7 +347,7 @@ FuncIndexArgs(IndexInfo *indexInfo, * time, it's not clear what the index entries mean at all. */ if (func_volatile(funcid) != PROVOLATILE_IMMUTABLE) - elog(ERROR, "DefineIndex: index function must be marked isImmutable"); + elog(ERROR, "DefineIndex: index function must be marked IMMUTABLE"); /* Process opclass, using func return type as default type */ |
