aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/indexcmds.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2003-01-23 15:18:40 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2003-01-23 15:18:40 +0000
commit36777c1e356f2798a5c1a71f8ab2c07c4881c93e (patch)
treef0dcb4768ac27ae97e311b6c19723434d591ef64 /src/backend/commands/indexcmds.c
parent790d5bc9922d515f04b83182b1767a4eaa37cdb7 (diff)
downloadpostgresql-36777c1e356f2798a5c1a71f8ab2c07c4881c93e.tar.gz
postgresql-36777c1e356f2798a5c1a71f8ab2c07c4881c93e.zip
Fix obsolete error message (isImmutable doesn't exist).
Diffstat (limited to 'src/backend/commands/indexcmds.c')
-rw-r--r--src/backend/commands/indexcmds.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/commands/indexcmds.c b/src/backend/commands/indexcmds.c
index df7e358b897..10d240d6d14 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.96 2003/01/02 19:29:22 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.97 2003/01/23 15:18:40 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -304,7 +304,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");
}
@@ -393,7 +393,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 */