Re: BUG #5010: perl iconv function returns ? character

From: Robert Haas <robertmhaas(at)gmail(dot)com>
To: Lampa <lampacz(at)gmail(dot)com>
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #5010: perl iconv function returns ? character
Date: 2009-09-05 04:02:50
Message-ID: 603c8f070909042102w5efa1ae4g569f052c28e80f9b@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

On Tue, Aug 25, 2009 at 8:15 AM, Lampa<lampacz(at)gmail(dot)com> wrote:
>
> The following bug has been logged online:
>
> Bug reference:      5010
> Logged by:          Lampa
> Email address:      lampacz(at)gmail(dot)com
> PostgreSQL version: 8.4.0
> Operating system:   Debian testing/unstable
> Description:        perl iconv function returns ? character
> Details:
>
> See the difference (example is the best explanation):
>
> psql -U postgres -p 5433
> psql (8.4.0, server 8.3.7)
> WARNING: psql version 8.4, server version 8.3.
>         Some psql features might not work.
> Type "help" for help.
>
> postgres=# select my_ascii2('Bockaničová');
>  my_ascii2
> -------------
>  Bockanicova
> (1 row)
>
> psql -U postgres -p 5432
> psql (8.4.0)
> Type "help" for help.
>
> postgres=# select my_ascii2('Bockaničová');
>  my_ascii2
> -------------
>  Bockani?ov?
> (1 row)
>
>
> function my_ascii2 is defined:
> CREATE FUNCTION my_ascii2(text) RETURNS text AS $$ use strict; use
> Text::Iconv; my $conv = Text::Iconv->new("UTF8", "ASCII//TRANSLIT"); return
> $conv->convert($_[0]); $$ LANGUAGE plperlu;
>
> 8.3.x version works perfectly, 8.4.0 problem

I can't reproduce this on 8.4.0 or CVS HEAD. I think that whatever
problem you have here is not a PostgreSQL bug.

> in more complicated queries (joins, conditions) after my_ascii2 function
> query are returned incorect count of rows

This may be related to whatever your other problem is.

...Robert

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Kamil Roman 2009-09-05 09:42:34 BUG #5039: 'i' flag i in regexp_replace ignored for polish letters
Previous Message Luke Koops 2009-09-05 03:52:29 BUG #5038: WAL file is pending deletion in pg_xlog folder, this interferes with WAL archiving.