git.postgresql.org Git - postgresql.git/commitdiff

git projects / postgresql.git / commitdiff
? search:
summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1a76550)
Fix stupid bug in installcheck
2004年6月23日 09:43:43 +0000 (09:43 +0000)
2004年6月23日 09:43:43 +0000 (09:43 +0000)

diff --git a/contrib/tsearch2/expected/tsearch2.out b/contrib/tsearch2/expected/tsearch2.out
index 658d51dd3fa9bc86f20c0e3c71211e6250c4d308..fb836c087a1b2dad2ffdde7ae1a9ea0e71c229f7 100644 (file)
--- a/contrib/tsearch2/expected/tsearch2.out
+++ b/contrib/tsearch2/expected/tsearch2.out
@@ -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'
diff --git a/contrib/tsearch2/sql/tsearch2.sql b/contrib/tsearch2/sql/tsearch2.sql
index 745d35b73ea606890705273de7fdb404213f3dd9..231ddaebe5e957c1befbd94707952c2085ea9d44 100644 (file)
--- a/contrib/tsearch2/sql/tsearch2.sql
+++ b/contrib/tsearch2/sql/tsearch2.sql
@@ -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('simple', 'qwe & sKies ');
select to_tsquery('default', '\'the wether\':dc & \' sKies \':BC ');
-select to_tsquery('asd&(and|fghj)');
-select to_tsquery('(asd&and)|fghj');
-select to_tsquery('(asd&!and)|fghj');
-select to_tsquery('(the|and&(i&1))&fghj');
+select to_tsquery('default', 'asd&(and|fghj)');
+select to_tsquery('default', '(asd&and)|fghj');
+select to_tsquery('default', '(asd&!and)|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:B';
select 'a b:89 ca:23A,64b d:34c'::tsvector @@ 'd:AC & ca:A';
This is the main PostgreSQL git repository.
RSS Atom

AltStyle によって変換されたページ (->オリジナル) /