From: | Amit Khandekar <amit(dot)khandekar(at)enterprisedb(dot)com> |
---|---|
To: | Alex Hunsaker <badalex(at)gmail(dot)com> |
Cc: | Andrew Dunstan <andrew(at)dunslane(dot)net>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Re: [COMMITTERS] pgsql: Force strings passed to and from plperl to be in UTF8 encoding. |
Date: | 2011-10-05 07:58:51 |
Message-ID: | CACoZds0c_Ky9=9YmuhEiB+y8TBS-mxaPnT65wzstHqy4JPg53A@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers pgsql-hackers |
On 5 October 2011 12:29, Alex Hunsaker <badalex(at)gmail(dot)com> wrote:
> On Wed, Oct 5, 2011 at 00:30, Alex Hunsaker <badalex(at)gmail(dot)com> wrote:
>> On Tue, Oct 4, 2011 at 23:46, Amit Khandekar
>> <amit(dot)khandekar(at)enterprisedb(dot)com> wrote:
>
>>> You mean the final changes in plperl_helpers.h would look like
>>> something like this right? :
>>>
>>> static inline char *
>>> utf_u2e(const char *utf8_str, size_t len)
>>> {
>>> char *ret = (char *) pg_do_encoding_conversion((unsigned
>>> char *) utf8_str, len, PG_UTF8, GetDatabaseEncoding());
>>>
>>> if (ret == utf8_str)
>>> + {
>>> + if (GetDatabaseEncoding() == PG_UTF8 ||
>>> + GetDatabaseEncoding() == PG_SQL_ASCII)
>>> + {
>>> + pg_verify_mbstr_len(PG_UTF8, utf8_str, len, false);
>>> + }
>>> +
>>> ret = pstrdup(ret);
>>> + }
>>> return ret;
>>> }
>>
>
>>> Yeah I am ok with that. It's just an additional check besides (ret ==
>>> utf8_str) to know if we really require validation.
>
> Find it attached. [ Note I didn't put the check inside the if (ret ==
> utf8_str) as it seemed a bit cleaner (indentation wise) to have it
> outside ]
I have no more issues with the patch.
Thanks!
-Amit
>
From | Date | Subject | |
---|---|---|---|
Next Message | Robert Haas | 2011-10-05 14:18:16 | Re: Re: [COMMITTERS] pgsql: Force strings passed to and from plperl to be in UTF8 encoding. |
Previous Message | Alex Hunsaker | 2011-10-05 06:59:47 | Re: Re: [COMMITTERS] pgsql: Force strings passed to and from plperl to be in UTF8 encoding. |
From | Date | Subject | |
---|---|---|---|
Next Message | Alexander Korotkov | 2011-10-05 08:20:59 | Re: Double sorting split patch |
Previous Message | Heikki Linnakangas | 2011-10-05 07:37:00 | Re: Double sorting split patch |