diff options
author | Bruce Momjian | 2006-05-19 02:38:47 +0000 |
---|---|---|
committer | Bruce Momjian | 2006-05-19 02:38:47 +0000 |
commit | cc84163fa92a040a4affcc0e7b8e436c593283fa (patch) | |
tree | dad8afd9f6fb50131f6dfe4e3dd4f6e91b045420 /contrib/tsearch2/query.c | |
parent | 40a95aa25b6345d5cb2e9410423b7af51792051d (diff) |
Use SQL standard '' rather than \' in /contrib. Backpatch to 8.1.X.
Diffstat (limited to 'contrib/tsearch2/query.c')
-rw-r--r-- | contrib/tsearch2/query.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/tsearch2/query.c b/contrib/tsearch2/query.c index 9be5f451fa..8ed66460ba 100644 --- a/contrib/tsearch2/query.c +++ b/contrib/tsearch2/query.c @@ -748,7 +748,7 @@ infix(INFIX * in, bool first) { if ( t_iseq(op, '\'') ) { - *(in->cur) = '\\'; + *(in->cur) = '\''; in->cur++; } COPYCHAR(in->cur,op); |