Re: How to convert HEX to ASCII?

From: Merlin Moncure <mmoncure(at)gmail(dot)com>
To: Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com>
Cc: Marti Raudsepp <marti(at)juffo(dot)org>, Torsten Zuehlsdorff <foo(at)meisterderspiele(dot)de>, pgsql-general(at)postgresql(dot)org
Subject: Re: How to convert HEX to ASCII?
Date: 2011-12-02 19:47:22
Message-ID: CAHyXU0yJmN4=0EKiK7DA8sx3nTSNxD-gf3Jtsrd7O68jU7AiyA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Fri, Dec 2, 2011 at 11:15 AM, Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com> wrote:
> 2011/12/2 Merlin Moncure <mmoncure(at)gmail(dot)com>:
>> On Fri, Dec 2, 2011 at 10:42 AM, Marti Raudsepp <marti(at)juffo(dot)org> wrote:
>>> Sorry, but AFAICT this makes a mess of encodings and only works by
>>> pure luck. The server thinks it's sending the client LATIN1 text, but
>>> it's actually UTF8-encoded and the last decoding step is done by your
>>> terminal.
>>
>> yup -- your're right -- what a coincidence!  I still prefer the 1
>> liner sql variant vs plpgsql loop though.  nicely done.
>
> so bytea_agg - one param aggregate has sense
>
> it's very easy to implement it

yup:

create aggregate bytea_agg (bytea)
(
sfunc=byteacat,
stype=bytea
);

merlin

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Pavel Stehule 2011-12-02 20:01:26 Re: How to convert HEX to ASCII?
Previous Message Pavel Stehule 2011-12-02 17:15:28 Re: How to convert HEX to ASCII?