utf8proc
diff 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.
- 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 diff
1.1 --- a/pgsql/utf8proc.sql Fri Mar 16 12:00:00 2007 +0100 1.2 +++ b/pgsql/utf8proc.sql Sun Jul 22 12:00:00 2007 +0200 1.3 @@ -1,4 +1,6 @@ 1.4 CREATE OR REPLACE FUNCTION unifold (text) RETURNS text 1.5 LANGUAGE 'C' IMMUTABLE STRICT AS '$libdir/utf8proc_pgsql.so', 1.6 'utf8proc_pgsql_unifold'; 1.7 - 1.8 +CREATE OR REPLACE FUNCTION unistrip (text) RETURNS text 1.9 + LANGUAGE 'C' IMMUTABLE STRICT AS '$libdir/utf8proc_pgsql.so', 1.10 + 'utf8proc_pgsql_unistrip';