mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
Fix stupid bug in installcheck
This commit is contained in:
@ -569,25 +569,25 @@ select to_tsquery('default', '\'the wether\':dc & \' sKies \':BC ');
|
||||
'wether':CD & 'sky':BC
|
||||
(1 row)
|
||||
|
||||
select to_tsquery('asd&(and|fghj)');
|
||||
select to_tsquery('default', 'asd&(and|fghj)');
|
||||
to_tsquery
|
||||
----------------
|
||||
'asd' & 'fghj'
|
||||
(1 row)
|
||||
|
||||
select to_tsquery('(asd&and)|fghj');
|
||||
select to_tsquery('default', '(asd&and)|fghj');
|
||||
to_tsquery
|
||||
----------------
|
||||
'asd' | 'fghj'
|
||||
(1 row)
|
||||
|
||||
select to_tsquery('(asd&!and)|fghj');
|
||||
select to_tsquery('default', '(asd&!and)|fghj');
|
||||
to_tsquery
|
||||
----------------
|
||||
'asd' | 'fghj'
|
||||
(1 row)
|
||||
|
||||
select to_tsquery('(the|and&(i&1))&fghj');
|
||||
select to_tsquery('default', '(the|and&(i&1))&fghj');
|
||||
to_tsquery
|
||||
--------------
|
||||
'1' & 'fghj'
|
||||
|
Reference in New Issue
Block a user