illegal call to pg_mbclipen() that is for backend only. However I
have not remove the entire part of the problem, rather mark it with
#ifdef MULTIBYTE_NOTUSED since we should come back with a long range
solution someday.
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.62 2000/09/21 11:56:07 meskes Exp $
+ * $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.63 2000/09/26 05:42:15 ishii Exp $
*
*-------------------------------------------------------------------------
*/
BEGIN(state_before);
if (strlen(literalbuf) >= NAMEDATALEN)
{
-#ifdef MULTIBYTE
+#ifdef MULTIBYTE_NOTUSED
int len;
len = pg_mbcliplen(literalbuf,strlen(literalbuf),NAMEDATALEN-1);
if (i >= NAMEDATALEN)
{
-#ifdef MULTIBYTE
+#ifdef MULTIBYTE_NOTUSED
int len;
len = pg_mbcliplen(lower_text,strlen(lower_text),NAMEDATALEN-1);