Re: byteain() doesn't parse correctly

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: byteain() doesn't parse correctly
Дата
Msg-id 28576.981562966@sss.pgh.pa.us
обсуждение исходный текст
Ответ на byteain() doesn't parse correctly  (Jered Floyd <jered@permabit.com>)
Список pgsql-bugs
Jered Floyd <jered@permabit.com> writes:
> Tom Lane <tgl@sss.pgh.pa.us> writes:
>> You're right, there are multiple levels of parsing going on.  The
>> string-literal parser gets first crack before the type-specific
>> input converter does.  If you don't allow for that when counting
>> backslashes etc, you'll get confused for sure.

> Argh. This is really bad.  This means, for example, that I can't have
> NULs in my bytea, which was the whole reason I was using bytea to
> begin with. Actually, maybe not.

Sure you can.  You just have to write them as \000, which actually
will be written \\000 to get through the string-literal parser.
It's not a real *convenient* notation, I agree, but it works.

There has been talk of providing alternate paths, such as functions
that would convert bytea to and from other textual representations
like base64.  Nothing's been done yet though.

            regards, tom lane

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Re: round - timestamp bug
Следующее
От: Thomas Lockhart
Дата:
Сообщение: Re: Re: round - timestamp bug