mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
Backpatch: Fix tsvector_out() and tsquery_out() to escape backslesh, add test of that.
Patch by Bruce Momjian <bruce@momjian.us>
This commit is contained in:
@ -67,6 +67,8 @@ SELECT '1&(2&(4&(5|!6)))'::tsquery;
|
||||
SELECT E'1&(''2''&('' 4''&(\\|5 | ''6 \\'' !|&'')))'::tsquery;
|
||||
SELECT '''the wether'':dc & '' sKies '':BC & a:d b:a';
|
||||
|
||||
SELECT tsvector_in(tsvector_out($$'\\as' ab\c ab\\c AB\\\c ab\\\\c$$::tsvector)), tsquery_in(tsquery_out($$'\\as'$$::tsquery));
|
||||
|
||||
select 'a' < 'b & c'::tsquery;
|
||||
select 'a' > 'b & c'::tsquery;
|
||||
select 'a | f' < 'b & c'::tsquery;
|
||||
|
Reference in New Issue
Block a user