diff options
author | Bruce Momjian <bruce@momjian.us> | 2006-05-19 02:38:47 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2006-05-19 02:38:47 +0000 |
commit | cc84163fa92a040a4affcc0e7b8e436c593283fa (patch) | |
tree | dad8afd9f6fb50131f6dfe4e3dd4f6e91b045420 /contrib/tsearch2/tsvector.c | |
parent | 40a95aa25b6345d5cb2e9410423b7af51792051d (diff) | |
download | postgresql-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.c | 2 |
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++; |