diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-07-15 07:33:40 +0200 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-07-15 07:33:40 +0200 |
commit | 08fd93d55ee43bfacabb5d5cd7352bbfe7389288 (patch) | |
tree | 231bd52815e02f1bd741833bc3f2e8e14b6fc22a /xt | |
parent | f0d8ea97a19363e4918e175cc5f3234941bad1b0 (diff) | |
download | bugzilla-08fd93d55ee43bfacabb5d5cd7352bbfe7389288.tar.gz bugzilla-08fd93d55ee43bfacabb5d5cd7352bbfe7389288.tar.xz |
Bug 578888: Search.pm: Add and store joins as data structures instead of
raw SQL.
r=mkanat, a=mkanat (module owner)
Diffstat (limited to 'xt')
-rw-r--r-- | xt/lib/Bugzilla/Test/Search/Constants.pm | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/xt/lib/Bugzilla/Test/Search/Constants.pm b/xt/lib/Bugzilla/Test/Search/Constants.pm index 9e70caf5a..11a7760e2 100644 --- a/xt/lib/Bugzilla/Test/Search/Constants.pm +++ b/xt/lib/Bugzilla/Test/Search/Constants.pm @@ -363,10 +363,8 @@ use constant KNOWN_BROKEN => { anyexact => { percentage_complete => { contains => [2] }, }, - # bug_group anywordssubstr returns all our bugs. Not sure why. anywordssubstr => { percentage_complete => { contains => [2] }, - bug_group => { contains => [3,4,5] }, }, 'allwordssubstr-<1>' => { ALLWORDS_BROKEN }, @@ -389,16 +387,13 @@ use constant KNOWN_BROKEN => { }, # anywords searches don't work on decimal values. - # bug_group anywords returns all bugs. # attach_data doesn't work (perhaps because it's the entire # data, or some problem with the regex?). anywords => { 'attach_data.thedata' => { contains => [1] }, - bug_group => { contains => [2,3,4,5] }, work_time => { contains => [1] }, }, 'anywords-<1> <2>' => { - bug_group => { contains => [3,4,5] }, percentage_complete => { contains => [2] }, 'attach_data.thedata' => { contains => [1,2] }, work_time => { contains => [1,2] }, |