Re: [COMMITTERS] pgsql: Fix up text concatenation so that it accepts all the reasonable

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [COMMITTERS] pgsql: Fix up text concatenation so that it accepts all the reasonable
Дата
Msg-id 28973.1190046479@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: [COMMITTERS] pgsql: Fix up text concatenation so that it accepts all the reasonable  (Markus Schiltknecht <markus@bluegap.ch>)
Ответы Re: [COMMITTERS] pgsql: Fix up text concatenation so that it accepts all the reasonable  (Markus Schiltknecht <markus@bluegap.ch>)
Список pgsql-hackers
Markus Schiltknecht <markus@bluegap.ch> writes:
> Tom Lane wrote:
>> I think you'd be nuts to bet your data on the binary representations
>> really being cross-platform compatible.

> Can you elaborate on this? AFAICT the send/recv functions use network 
> byte ordering. What are the other problems between different architectures?

Well, you're probably fine with integers and text, but beyond that it
gets a bit more dicey.  I wouldn't want to assume that floats are
compatible across any random pair of architectures, and in the more
complex datatypes (such as arrays or geometric types) there might be
some impact from alignment rules.  (Or not, I'm too lazy to go look at
the moment.)

In any one situation you can doubtless find out by testing whether
you've got a problem.  I'm just nervous about a blithe suggestion that
someone could build a cross-platform backup solution this way.  That
sounds like a recipe for getting burnt and not finding out till it's
too late to fix it.
        regards, tom lane


В списке pgsql-hackers по дате отправления:

Предыдущее
От: "Andrew Hammond"
Дата:
Сообщение: Re: database diagram
Следующее
От: Markus Schiltknecht
Дата:
Сообщение: Re: [COMMITTERS] pgsql: Fix up text concatenation so that it accepts all the reasonable