Index: src/backend/utils/mb/conversion_procs/utf8_and_iso8859_1/utf8_and_iso8859_1.c
===================================================================
RCS file: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_iso8859_1/utf8_and_iso8859_1.c,v
retrieving revision 1.13
diff -c -c -r1.13 utf8_and_iso8859_1.c
*** src/backend/utils/mb/conversion_procs/utf8_and_iso8859_1/utf8_and_iso8859_1.c	25 Dec 2005 02:14:18 -0000	1.13
--- src/backend/utils/mb/conversion_procs/utf8_and_iso8859_1/utf8_and_iso8859_1.c	12 Feb 2006 20:59:36 -0000
***************
*** 84,91 ****
  			len -= 2;
  		}
  		else if ((c & 0xe0) == 0xe0)
! 			elog(ERROR, "could not convert UTF8 character 0x%04x to ISO8859-1",
! 				 c);
  		else
  		{
  			*dest++ = c;
--- 84,93 ----
  			len -= 2;
  		}
  		else if ((c & 0xe0) == 0xe0)
! 			ereport(WARNING,
! 					(errcode(ERRCODE_UNTRANSLATABLE_CHARACTER),
! 					 errmsg("ignoring unconvertible UTF-8 character 0x%04x",
! 							c)));
  		else
  		{
  			*dest++ = c;
