Peter Eisentraut <peter_e(at)gmx(dot)net> writes:
> A bug indeed.
> <xd>{xddouble} {
> - addlit(yytext, yyleng-1);
> + addlit(yytext+1, yyleng-1);
> }
I don't follow. xddouble can only expand to two quote marks, so how
does it matter which one we use as the result? This seems unlikely
to change the behavior. If it does, I think the real bug is elsewhere.
I do see a bug here --- I get
regression=# select """";
NOTICE: identifier """ [ lots o' rubouts ] @;" will be truncated to """"
ERROR: Attribute '""' not found
regression=#
regards, tom lane
In response to
Responses
pgsql-hackers by date
| Next: | From: Bruce Momjian | Date: 2001-09-04 00:16:52 |
| Subject: Re: Bytea/Base64 encoders for libpq - interested? |
| Previous: | From: Tom Lane | Date: 2001-09-03 23:08:11 |
| Subject: Re: Re: Toast,bytea, Text -blob all confusing |