diff options
author | Teodor Sigaev <teodor@sigaev.ru> | 2004-06-23 10:03:57 +0000 |
---|---|---|
committer | Teodor Sigaev <teodor@sigaev.ru> | 2004-06-23 10:03:57 +0000 |
commit | c0626280c79b8eb9f800685bc6bd5e6dc448a61d (patch) | |
tree | 7d0b237f78ca919d69a62d3e207768dd7dcd64a7 | |
parent | 15a932c50f515987ed9c7f3aacd8a6d793ee92f7 (diff) | |
download | postgresql-c0626280c79b8eb9f800685bc6bd5e6dc448a61d.tar.gz postgresql-c0626280c79b8eb9f800685bc6bd5e6dc448a61d.zip |
Fix stupid bug in installcheck
-rw-r--r-- | contrib/tsearch2/expected/tsearch2.out | 8 | ||||
-rw-r--r-- | contrib/tsearch2/sql/tsearch2.sql | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/contrib/tsearch2/expected/tsearch2.out b/contrib/tsearch2/expected/tsearch2.out index bdcdd952cf6..199c6f9b8e6 100644 --- 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 d4f1021d7d8..0ad123fade5 100644 --- 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'; |