diff options
author | Byron Jones <bjones@mozilla.com> | 2012-11-22 09:23:53 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2012-11-22 09:23:53 +0100 |
commit | da12cec61f8c7e667b00fc5fc39c827d3593f021 (patch) | |
tree | a7993cf0d3ad5c534dd7604b827c8ce8267fcf38 /Bugzilla/DB | |
parent | ceafb43c1653b9f596965b8ead840f4cd6a29156 (diff) | |
download | bugzilla-da12cec61f8c7e667b00fc5fc39c827d3593f021.tar.gz bugzilla-da12cec61f8c7e667b00fc5fc39c827d3593f021.tar.xz |
Bug 780820: Allows for multiple custom search criteria to match one field
r=dkl,a=LpSolit
Diffstat (limited to 'Bugzilla/DB')
-rw-r--r-- | Bugzilla/DB/Oracle.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Bugzilla/DB/Oracle.pm b/Bugzilla/DB/Oracle.pm index fcc4e88a9..01c37a028 100644 --- a/Bugzilla/DB/Oracle.pm +++ b/Bugzilla/DB/Oracle.pm @@ -203,16 +203,16 @@ sub sql_position { } sub sql_in { - my ($self, $column_name, $in_list_ref) = @_; + my ($self, $column_name, $in_list_ref, $negate) = @_; my @in_list = @$in_list_ref; - return $self->SUPER::sql_in($column_name, $in_list_ref) if $#in_list < 1000; + return $self->SUPER::sql_in($column_name, $in_list_ref, $negate) if $#in_list < 1000; my @in_str; while (@in_list) { my $length = $#in_list + 1; my $splice = $length > 1000 ? 1000 : $length; my @sub_in_list = splice(@in_list, 0, $splice); push(@in_str, - $self->SUPER::sql_in($column_name, \@sub_in_list)); + $self->SUPER::sql_in($column_name, \@sub_in_list, $negate)); } return "( " . join(" OR ", @in_str) . " )"; } |