mirror of
https://github.com/postgres/postgres.git
synced 2025-04-22 23:02:54 +03:00
Fix stupid bug in installcheck
This commit is contained in:
parent
1a76550b3b
commit
09bc52fe73
@ -569,25 +569,25 @@ select to_tsquery('default', '\'the wether\':dc & \' sKies \':BC ');
|
|||||||
'wether':CD & 'sky':BC
|
'wether':CD & 'sky':BC
|
||||||
(1 row)
|
(1 row)
|
||||||
|
|
||||||
select to_tsquery('asd&(and|fghj)');
|
select to_tsquery('default', 'asd&(and|fghj)');
|
||||||
to_tsquery
|
to_tsquery
|
||||||
----------------
|
----------------
|
||||||
'asd' & 'fghj'
|
'asd' & 'fghj'
|
||||||
(1 row)
|
(1 row)
|
||||||
|
|
||||||
select to_tsquery('(asd&and)|fghj');
|
select to_tsquery('default', '(asd&and)|fghj');
|
||||||
to_tsquery
|
to_tsquery
|
||||||
----------------
|
----------------
|
||||||
'asd' | 'fghj'
|
'asd' | 'fghj'
|
||||||
(1 row)
|
(1 row)
|
||||||
|
|
||||||
select to_tsquery('(asd&!and)|fghj');
|
select to_tsquery('default', '(asd&!and)|fghj');
|
||||||
to_tsquery
|
to_tsquery
|
||||||
----------------
|
----------------
|
||||||
'asd' | 'fghj'
|
'asd' | 'fghj'
|
||||||
(1 row)
|
(1 row)
|
||||||
|
|
||||||
select to_tsquery('(the|and&(i&1))&fghj');
|
select to_tsquery('default', '(the|and&(i&1))&fghj');
|
||||||
to_tsquery
|
to_tsquery
|
||||||
--------------
|
--------------
|
||||||
'1' & 'fghj'
|
'1' & 'fghj'
|
||||||
|
@ -87,10 +87,10 @@ SELECT length(to_tsvector('default', '345 qwe@efd.r \' http://www.com/ http://ae
|
|||||||
select to_tsquery('default', 'qwe & sKies ');
|
select to_tsquery('default', 'qwe & sKies ');
|
||||||
select to_tsquery('simple', 'qwe & sKies ');
|
select to_tsquery('simple', 'qwe & sKies ');
|
||||||
select to_tsquery('default', '\'the wether\':dc & \' sKies \':BC ');
|
select to_tsquery('default', '\'the wether\':dc & \' sKies \':BC ');
|
||||||
select to_tsquery('asd&(and|fghj)');
|
select to_tsquery('default', 'asd&(and|fghj)');
|
||||||
select to_tsquery('(asd&and)|fghj');
|
select to_tsquery('default', '(asd&and)|fghj');
|
||||||
select to_tsquery('(asd&!and)|fghj');
|
select to_tsquery('default', '(asd&!and)|fghj');
|
||||||
select to_tsquery('(the|and&(i&1))&fghj');
|
select to_tsquery('default', '(the|and&(i&1))&fghj');
|
||||||
select 'a b:89 ca:23A,64b d:34c'::tsvector @@ 'd:AC & ca';
|
select 'a b:89 ca:23A,64b d:34c'::tsvector @@ 'd:AC & ca';
|
||||||
select 'a b:89 ca:23A,64b d:34c'::tsvector @@ 'd:AC & ca:B';
|
select 'a b:89 ca:23A,64b d:34c'::tsvector @@ 'd:AC & ca:B';
|
||||||
select 'a b:89 ca:23A,64b d:34c'::tsvector @@ 'd:AC & ca:A';
|
select 'a b:89 ca:23A,64b d:34c'::tsvector @@ 'd:AC & ca:A';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user