|
8 | 8 | *
|
9 | 9 | *
|
10 | 10 | * IDENTIFICATION
|
11 |
| - * $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.96 2003/01/02 19:29:22 tgl Exp $ |
| 11 | + * $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.97 2003/01/23 15:18:40 tgl Exp $ |
12 | 12 | *
|
13 | 13 | *-------------------------------------------------------------------------
|
14 | 14 | */
|
@@ -304,7 +304,7 @@ CheckPredicate(List *predList, List *rangeTable, Oid baseRelOid)
|
304 | 304 | * reasons that we don't allow a functional index to use one.
|
305 | 305 | */
|
306 | 306 | if (contain_mutable_functions((Node*)predList))
|
307 |
| -elog(ERROR,"Functions in index predicate must be markedisImmutable"); |
| 307 | +elog(ERROR,"Functions in index predicate must be markedIMMUTABLE"); |
308 | 308 | }
|
309 | 309 |
|
310 | 310 |
|
@@ -393,7 +393,7 @@ FuncIndexArgs(IndexInfo *indexInfo,
|
393 | 393 | * time, it's not clear what the index entries mean at all.
|
394 | 394 | */
|
395 | 395 | if (func_volatile(funcid)!=PROVOLATILE_IMMUTABLE)
|
396 |
| -elog(ERROR,"DefineIndex: index function must be markedisImmutable"); |
| 396 | +elog(ERROR,"DefineIndex: index function must be markedIMMUTABLE"); |
397 | 397 |
|
398 | 398 | /* Process opclass, using func return type as default type */
|
399 | 399 |
|
|