for my pgcat utility i now know i have to use \nnn octal quoting for
nonprintables in the generated INSERT commands. but in testing, i
found the following oddity. this is in 7.1-b1 (cvs-current).
vixie=> create table foo ( bar text );CREATEvixie=> insert into foo values ( 'a\033b' );INSERT 728084 1vixie=> select
length(bar)from foo;length------ 3(1 row)
great! it stored the escape. and since SELECT's front/back end protocol
is counted-string rather than quoted text, it comes back reliably (though
i still intend to try a binary cursor at some point, just to do it.) BUT:
vixie=> delete from foo;DELETE 1vixie=> insert into foo values ( 'a\0b' );INSERT 728085 1vixie=> select length(bar)
fromfoo;length------ 1(1 row)
vixie=> drop table foo;DROPvixie=> \q
this is not what i was hoping for at ALL. evidently the implementation of
text assumes NUL-termination in other places than the parser. ultimately
this means that pgsql will need a "blob" type whose presentation format is
uuencode or some such. but is there a workaround for this using "text"?
how would someone be expected to store, say, a GIF image in a TOAST text?