diff options
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 d823231067a..07f64ba4137 100644 --- a/contrib/tsearch2/tsvector.c +++ b/contrib/tsearch2/tsvector.c @@ -519,7 +519,7 @@ tsvector_out(PG_FUNCTION_ARGS) j = ptr->len; while (j--) { - if (*curin == '\'') + if (*curin == '\'' || *curin == '\\') { int4 pos = curout - outbuf; |