Commit 19892feb authored by Bruce Momjian's avatar Bruce Momjian

Back out \' change for tsearch2, broke regression tests.

parent 7d866ffa
...@@ -748,7 +748,7 @@ infix(INFIX * in, bool first) ...@@ -748,7 +748,7 @@ infix(INFIX * in, bool first)
{ {
if ( t_iseq(op, '\'') ) if ( t_iseq(op, '\'') )
{ {
*(in->cur) = '\''; *(in->cur) = '\\';
in->cur++; in->cur++;
} }
COPYCHAR(in->cur,op); COPYCHAR(in->cur,op);
......
...@@ -529,7 +529,7 @@ tsvector_out(PG_FUNCTION_ARGS) ...@@ -529,7 +529,7 @@ tsvector_out(PG_FUNCTION_ARGS)
outbuf = (char *) repalloc((void *) outbuf, ++lenbuf); outbuf = (char *) repalloc((void *) outbuf, ++lenbuf);
curout = outbuf + pos; curout = outbuf + pos;
*curout++ = '\''; *curout++ = '\\';
} }
while(len--) while(len--)
*curout++ = *curin++; *curout++ = *curin++;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment