Lines 176-182
sub build_query_compat {
Link Here
|
176 |
} else { |
176 |
} else { |
177 |
my @sort_params = $self->_convert_sort_fields(@$sort_by); |
177 |
my @sort_params = $self->_convert_sort_fields(@$sort_by); |
178 |
my @index_params = $self->_convert_index_fields(@$indexes); |
178 |
my @index_params = $self->_convert_index_fields(@$indexes); |
179 |
my $limits = $self->_fix_limit_special_cases($orig_limits); |
179 |
$limits = $self->_fix_limit_special_cases($orig_limits); |
180 |
if ( $params->{suppress} ) { push @$limits, "suppress:false"; } |
180 |
if ( $params->{suppress} ) { push @$limits, "suppress:false"; } |
181 |
# Merge the indexes in with the search terms and the operands so that |
181 |
# Merge the indexes in with the search terms and the operands so that |
182 |
# each search thing is a handy unit. |
182 |
# each search thing is a handy unit. |
183 |
- |
|
|