utf8proc

view pgsql/utf8proc.sql @ 7:fcfd8c836c64

Version 1.1.1

- Added a new PostgreSQL function 'unistrip', which behaves like 'unifold', but also removes all character marks (e.g. accents).
- Changed license from BSD to MIT style.
- Added a new function 'utf8proc_codepoint_valid' to the C library.
- Changed compiler flags in Makefile from -g -O0 to -O2
- The ruby script, which was used to build the utf8proc_data.c file, is now included in the distribution.
author jbe
date Sun Jul 22 12:00:00 2007 +0200 (2007-07-22)
parents a0368662434c
children d0bab6ca89a5
line source
1 CREATE OR REPLACE FUNCTION unifold (text) RETURNS text
2 LANGUAGE 'C' IMMUTABLE STRICT AS '$libdir/utf8proc_pgsql.so',
3 'utf8proc_pgsql_unifold';
4 CREATE OR REPLACE FUNCTION unistrip (text) RETURNS text
5 LANGUAGE 'C' IMMUTABLE STRICT AS '$libdir/utf8proc_pgsql.so',
6 'utf8proc_pgsql_unistrip';

Impressum / About Us