From: | Jason Godden <jasongodden(at)optushome(dot)com(dot)au> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Stephan Szabo <sszabo(at)megazone(dot)bigpanda(dot)com> |
Cc: | Markus Bertheau <twanger(at)bluetwanger(dot)de>, pgsql-hackers(at)postgresql(dot)org |
Subject: | Re: \xDD patch for 7.5devel |
Date: | 2003-11-06 06:44:41 |
Message-ID: | 200311061744.41286.jasongodden@optushome.com.au |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
> #define HEXVALUE(c) \
> (((c) >= '0' && (c) <= '9') ? ((c) - '0') : \
> (((c) >= 'A' && (c) <= 'F') ? ((c) - 'A' + 10) : \
> ((c) - 'a' + 10)))
>
> 3. The third level would be to get rid of the assumption that letters
> are contiguous, which would probably require making a lookup table to
> map from char code to hex value.
>
> I'm not sure level 3 is really worth doing, since AFAIK no one tries to
> run Postgres on any EBCDIC platform. (It's likely that there are other
> places that depend on the letters-are-contiguous assumption anyway.)
> I do think level 1 and probably level 2 are appropriate changes.
>
> regards, tom lane
Hi Guys,
Thanks for the feedback. Tom I'll make the changes proposed here to the macro
and repost the patch to pgsql-patches (and do some reading on Unicode!). I
guess at this stage I would like to offer any of my time to any janitorial
work that might be needed as until im more knowledgeable about the pg source
I think any large scale stuff is off the cards.
Rgds,
Jason
From | Date | Subject | |
---|---|---|---|
Next Message | Dave Page | 2003-11-06 08:19:27 | Re: [HACKERS] Changes to Contributor List |
Previous Message | Devrim GUNDUZ | 2003-11-06 06:23:24 | New developer site (Was: Re: [HACKERS] Changes to Contributor List) |