utf8proc
diff pgsql/utf8proc.sql @ 14:d0bab6ca89a5
Version 1.1.6
- PostgreSQL 9.2 and 9.3 compatibility (lowercase 'c' language name)
- PostgreSQL 9.2 and 9.3 compatibility (lowercase 'c' language name)
author | jbe |
---|---|
date | Wed Nov 27 12:00:00 2013 +0100 (2013-11-27) |
parents | fcfd8c836c64 |
children |
line diff
1.1 --- a/pgsql/utf8proc.sql Fri Oct 16 12:00:00 2009 +0200 1.2 +++ b/pgsql/utf8proc.sql Wed Nov 27 12:00:00 2013 +0100 1.3 @@ -1,6 +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 + LANGUAGE 'c' IMMUTABLE STRICT AS '$libdir/utf8proc_pgsql.so', 1.7 'utf8proc_pgsql_unifold'; 1.8 CREATE OR REPLACE FUNCTION unistrip (text) RETURNS text 1.9 - LANGUAGE 'C' IMMUTABLE STRICT AS '$libdir/utf8proc_pgsql.so', 1.10 + LANGUAGE 'c' IMMUTABLE STRICT AS '$libdir/utf8proc_pgsql.so', 1.11 'utf8proc_pgsql_unistrip';