mirror of
https://github.com/postgres/postgres.git
synced 2025-08-06 18:42:54 +03:00
Use SQL standard '' rather than \' in /contrib. Backpatch to 8.1.X.
This commit is contained in:
@@ -529,7 +529,7 @@ tsvector_out(PG_FUNCTION_ARGS)
|
||||
|
||||
outbuf = (char *) repalloc((void *) outbuf, ++lenbuf);
|
||||
curout = outbuf + pos;
|
||||
*curout++ = '\\';
|
||||
*curout++ = '\'';
|
||||
}
|
||||
while(len--)
|
||||
*curout++ = *curin++;
|
||||
|
Reference in New Issue
Block a user