On Mon, Mar 21, 2005 at 11:19:21PM +0100, Steffen G. wrote:
> Jeff Zucker wrote:
> > Steffen G. wrote:
> >>As this problem is similar to a bug I've found few months ago, which Jeff
> >>could fix by adding a line in SQL::Parser (thanks again)
> >>
> > Steffen, could you resend me that previous fix, I've had some mail
> > storage disasters and I want to make sure I have that.
>
> Sure. It was about backslash quoting (all backslashes were doubled when
> stored and fetched again), solution was to insert this line before line
> 1748 in SQL::Parser:
>
> @$fields = map { s/\\\\/\\/g; $_ } @$fields;
Changing it to:
s/\\\\/\\/g for @$fields
would be significantly faster.
Tim.