Small message equalization fix
authorPeter Eisentraut
Fri, 17 Nov 2006 16:46:27 +0000 (16:46 +0000)
committerPeter Eisentraut
Fri, 17 Nov 2006 16:46:27 +0000 (16:46 +0000)
src/backend/executor/execQual.c

index a827335c62088626b652012042dd5c05f2feb7f9..1dbef5f15c99628ea625028c801a1d2cb52b1d48 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *   $PostgreSQL: pgsql/src/backend/executor/execQual.c,v 1.198 2006/11/08 00:45:30 neilc Exp $
+ *   $PostgreSQL: pgsql/src/backend/executor/execQual.c,v 1.199 2006/11/17 16:46:27 petere Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -302,7 +302,7 @@ ExecEvalArrayRef(ArrayRefExprState *astate,
                if (isAssignment)
                    ereport(ERROR,
                            (errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED),
-                            errmsg("array subscript in assignment must not be NULL")));
+                            errmsg("array subscript in assignment must not be null")));
                *isNull = true;
                return (Datum) NULL;
            }