summaryrefslogtreecommitdiff
path: root/contrib/tsearch2/tsvector.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2006-05-19 02:38:47 +0000
committerBruce Momjian <bruce@momjian.us>2006-05-19 02:38:47 +0000
commitcc84163fa92a040a4affcc0e7b8e436c593283fa (patch)
treedad8afd9f6fb50131f6dfe4e3dd4f6e91b045420 /contrib/tsearch2/tsvector.c
parent40a95aa25b6345d5cb2e9410423b7af51792051d (diff)
downloadpostgresql-cc84163fa92a040a4affcc0e7b8e436c593283fa.tar.gz
Use SQL standard '' rather than \' in /contrib. Backpatch to 8.1.X.
Diffstat (limited to 'contrib/tsearch2/tsvector.c')
-rw-r--r--contrib/tsearch2/tsvector.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/tsearch2/tsvector.c b/contrib/tsearch2/tsvector.c
index 0f369bdcb7..d274f01256 100644
--- a/contrib/tsearch2/tsvector.c
+++ b/contrib/tsearch2/tsvector.c
@@ -529,7 +529,7 @@ tsvector_out(PG_FUNCTION_ARGS)
outbuf = (char *) repalloc((void *) outbuf, ++lenbuf);
curout = outbuf + pos;
- *curout++ = '\\';
+ *curout++ = '\'';
}
while(len--)
*curout++ = *curin++;