annotate pgsql/utf8proc.sql @ 16:1711af85df6f
Added tags for versions 0.1 through 1.1.6
author |
jbe |
date |
Fri Nov 28 01:56:31 2014 +0100 (2014-11-28) |
parents |
d0bab6ca89a5 |
children |
|
rev |
line source |
jbe@0
|
1 CREATE OR REPLACE FUNCTION unifold (text) RETURNS text
|
jbe@14
|
2 LANGUAGE 'c' IMMUTABLE STRICT AS '$libdir/utf8proc_pgsql.so',
|
jbe@0
|
3 'utf8proc_pgsql_unifold';
|
jbe@7
|
4 CREATE OR REPLACE FUNCTION unistrip (text) RETURNS text
|
jbe@14
|
5 LANGUAGE 'c' IMMUTABLE STRICT AS '$libdir/utf8proc_pgsql.so',
|
jbe@7
|
6 'utf8proc_pgsql_unistrip';
|