Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit09bc52f

Browse files
committed
Fix stupid bug in installcheck
1 parent1a76550 commit09bc52f

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

‎contrib/tsearch2/expected/tsearch2.out

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -569,25 +569,25 @@ select to_tsquery('default', '\'the wether\':dc & \' sKies \':BC ');
569569
'wether':CD & 'sky':BC
570570
(1 row)
571571

572-
select to_tsquery('asd&(and|fghj)');
572+
select to_tsquery('default', 'asd&(and|fghj)');
573573
to_tsquery
574574
----------------
575575
'asd' & 'fghj'
576576
(1 row)
577577

578-
select to_tsquery('(asd&and)|fghj');
578+
select to_tsquery('default', '(asd&and)|fghj');
579579
to_tsquery
580580
----------------
581581
'asd' | 'fghj'
582582
(1 row)
583583

584-
select to_tsquery('(asd&!and)|fghj');
584+
select to_tsquery('default', '(asd&!and)|fghj');
585585
to_tsquery
586586
----------------
587587
'asd' | 'fghj'
588588
(1 row)
589589

590-
select to_tsquery('(the|and&(i&1))&fghj');
590+
select to_tsquery('default', '(the|and&(i&1))&fghj');
591591
to_tsquery
592592
--------------
593593
'1' & 'fghj'

‎contrib/tsearch2/sql/tsearch2.sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,10 @@ SELECT length(to_tsvector('default', '345 qwe@efd.r \' http://www.com/ http://ae
8787
select to_tsquery('default','qwe & sKies');
8888
select to_tsquery('simple','qwe & sKies');
8989
select to_tsquery('default','\'the wether\':dc &\' sKies\':BC');
90-
select to_tsquery('asd&(and|fghj)');
91-
select to_tsquery('(asd&and)|fghj');
92-
select to_tsquery('(asd&!and)|fghj');
93-
select to_tsquery('(the|and&(i&1))&fghj');
90+
select to_tsquery('default','asd&(and|fghj)');
91+
select to_tsquery('default','(asd&and)|fghj');
92+
select to_tsquery('default','(asd&!and)|fghj');
93+
select to_tsquery('default','(the|and&(i&1))&fghj');
9494
select'a b:89 ca:23A,64b d:34c'::tsvector @@'d:AC & ca';
9595
select'a b:89 ca:23A,64b d:34c'::tsvector @@'d:AC & ca:B';
9696
select'a b:89 ca:23A,64b d:34c'::tsvector @@'d:AC & ca:A';

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp