utf8proc

diff pgsql/utf8proc_pgsql.c @ 3:4ee0d5f54af1

Version 1.0

- added the LUMP option, which lumps certain characters together (see lump.txt) (also used for the PostgreSQL "unifold" function)
- added the STRIPMARK option, which strips marking characters (or marks of composed characters)
- deprecated ruby method String#char_ary in favour of String#utf8chars
author jbe
date Sun Sep 17 12:00:00 2006 +0200 (2006-09-17)
parents aaad485d5335
children c18366878af9
line diff
     1.1 --- a/pgsql/utf8proc_pgsql.c	Fri Aug 04 12:00:00 2006 +0200
     1.2 +++ b/pgsql/utf8proc_pgsql.c	Sun Sep 17 12:00:00 2006 +0200
     1.3 @@ -33,8 +33,8 @@
     1.4  
     1.5  /*
     1.6   *  File name:    pgsql/utf8proc_pgsql.c
     1.7 - *  Version:      0.3
     1.8 - *  Last changed: 2006-08-04
     1.9 + *  Version:      1.0
    1.10 + *  Last changed: 2006-09-17
    1.11   *
    1.12   *  Description:
    1.13   *  PostgreSQL extension to provide a function 'unifold', which can be used
    1.14 @@ -53,7 +53,7 @@
    1.15  
    1.16  #define UTF8PROC_PGSQL_OPTS ( UTF8PROC_REJECTNA | UTF8PROC_COMPAT | \
    1.17    UTF8PROC_COMPOSE | UTF8PROC_STABLE | UTF8PROC_IGNORE | UTF8PROC_STRIPCC | \
    1.18 -  UTF8PROC_NLF2LF | UTF8PROC_CASEFOLD )
    1.19 +  UTF8PROC_NLF2LF | UTF8PROC_CASEFOLD | UTF8PROC_LUMP )
    1.20  
    1.21  PG_FUNCTION_INFO_V1(utf8proc_pgsql_unifold);
    1.22  Datum utf8proc_pgsql_unifold(PG_FUNCTION_ARGS) {

Impressum / About Us