77 *
88 *
99 * IDENTIFICATION
10- * $PostgreSQL: pgsql/src/backend/utils/adt/tsvector_op.c,v 1.10 2007/11/28 21:56:30 tgl Exp $
10+ * $PostgreSQL: pgsql/src/backend/utils/adt/tsvector_op.c,v 1.11 2007/12/27 13:02:48 petere Exp $
1111 *
1212 *-------------------------------------------------------------------------
1313 */
@@ -1324,7 +1324,7 @@ tsvector_update_trigger(PG_FUNCTION_ARGS, bool config_column)
13241324if (config_attr_num == SPI_ERROR_NOATTRIBUTE )
13251325ereport (ERROR ,
13261326(errcode (ERRCODE_UNDEFINED_COLUMN ),
1327- errmsg ("config column \"%s\" does not exist" ,
1327+ errmsg ("configuration column \"%s\" does not exist" ,
13281328trigger -> tgargs [1 ])));
13291329if (SPI_gettypeid (rel -> rd_att ,config_attr_num )!= REGCONFIGOID )
13301330ereport (ERROR ,
@@ -1336,7 +1336,7 @@ tsvector_update_trigger(PG_FUNCTION_ARGS, bool config_column)
13361336if (isnull )
13371337ereport (ERROR ,
13381338(errcode (ERRCODE_NULL_VALUE_NOT_ALLOWED ),
1339- errmsg ("config column \"%s\" must not beNULL " ,
1339+ errmsg ("configuration column \"%s\" must not benull " ,
13401340trigger -> tgargs [1 ])));
13411341cfgId = DatumGetObjectId (datum );
13421342}