1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Remove --enable-recode feature, since it's been broken by IPv6 changes,

and seems to have too few users to justify maintaining.
This commit is contained in:
Tom Lane
2003-08-04 04:03:10 +00:00
parent f3c3deb7d0
commit 4c3c8c048d
18 changed files with 12 additions and 920 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/varlena.c,v 1.104 2003/08/04 02:40:06 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/varlena.c,v 1.105 2003/08/04 04:03:10 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -268,10 +268,6 @@ textin(PG_FUNCTION_ARGS)
memcpy(VARDATA(result), inputText, len);
#ifdef CYR_RECODE
convertstr(VARDATA(result), len, 0);
#endif
PG_RETURN_TEXT_P(result);
}
@ -290,10 +286,6 @@ textout(PG_FUNCTION_ARGS)
memcpy(result, VARDATA(t), len);
result[len] = '\0';
#ifdef CYR_RECODE
convertstr(result, len, 1);
#endif
PG_RETURN_CSTRING(result);
}