Project

General

Profile

Actions

Defect #23596

closed

Filter on issue ID with between/lesser/greater operator does not work

Added by JW Fuchs over 7 years ago. Updated over 7 years ago.

Status:
Closed
Priority:
Normal
Category:
Issues filter
Target version:
Start date:
Due date:
% Done:

0%

Estimated time:
Resolution:
Fixed
Affected version:

Description

Version 3.3.0 introduced the feature to filter by issues by id, including range, see #4806.

This feature does not work correctly. When a range should be displayed, only a single issue is returned.

Several issues exist in test database:

Query result should show IDs 5 to 10:

Query result should show IDs 6 to 8:


Files

list_of_issues.PNG (20.4 KB) list_of_issues.PNG JW Fuchs, 2016-08-16 15:12
list_greater_id_five.PNG (13.5 KB) list_greater_id_five.PNG JW Fuchs, 2016-08-16 15:12
list_range_id_six_to_eight.PNG (13.5 KB) list_range_id_six_to_eight.PNG JW Fuchs, 2016-08-16 15:12
defect-23596.diff (592 Bytes) defect-23596.diff patch by dee cay Go MAEDA, 2016-08-28 15:00

Related issues

Related to Redmine - Feature #4806: Filter the issue list by issue idsClosedJean-Philippe Lang2010-02-11

Actions
Actions #1

Updated by dee cay over 7 years ago

This should work.

app/models/issue_query.rb

  def sql_for_issue_id_field(field, operator, value)
    ids = value.first.to_s.scan(/\d+/).map(&:to_i).join(",")

    if ids.present?
      if operator == "=" 
        "#{Issue.table_name}.id IN (#{ids})" 
      else
        sql_for_field("id", operator, value, Issue.table_name, "id")
      end
    else
      "1=0" 
    end
  end

Actions #2

Updated by Go MAEDA over 7 years ago

I confirmed the problem and dee cay's fix (#23596#note-1) works fine.
This is a patch made from dee cay's post: defect-23596.diff

Setting target version to 3.3.1.

Actions #3

Updated by Toshi MARUYAMA over 7 years ago

  • Related to Feature #4806: Filter the issue list by issue ids added
Actions #4

Updated by Jean-Philippe Lang over 7 years ago

  • Subject changed from Filter on issue ID does not work correctly to Filter on issue ID with between/lesser/greater operator does not work
  • Status changed from Confirmed to Resolved
  • Assignee set to Jean-Philippe Lang
  • Resolution set to Fixed

Slightly different fix applied in r15751, thanks for pointing this out.

Actions #5

Updated by Jean-Philippe Lang over 7 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF