From: Go MAEDA Date: Wed, 3 Jan 2024 07:36:05 +0000 (+0000) Subject: Merged r22583 from trunk to 5.0-stable (#39991). X-Git-Tag: 5.0.8~14 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=9dc0bfa9bf4be310f6ce6e1038d858bd1236fc80;p=redmine.git Merged r22583 from trunk to 5.0-stable (#39991). git-svn-id: https://svn.redmine.org/redmine/branches/5.0-stable@22588 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/models/query.rb b/app/models/query.rb index 1b98da6e8..2dbb47858 100644 --- a/app/models/query.rb +++ b/app/models/query.rb @@ -1265,7 +1265,7 @@ class Query < ActiveRecord::Base sql += " OR #{db_table}.#{db_field} = ''" if is_custom_filter || [:text, :string].include?(type_for(field)) when "*" sql = "#{db_table}.#{db_field} IS NOT NULL" - sql += " AND #{db_table}.#{db_field} <> ''" if is_custom_filter + sql += " AND #{db_table}.#{db_field} <> ''" if is_custom_filter || [:text, :string].include?(type_for(field)) when ">=" if [:date, :date_past].include?(type_for(field)) sql = date_clause(db_table, db_field, parse_date(value.first), nil, is_custom_filter) diff --git a/test/unit/query_test.rb b/test/unit/query_test.rb index 5322f8233..bcfc56e07 100644 --- a/test/unit/query_test.rb +++ b/test/unit/query_test.rb @@ -214,7 +214,7 @@ class QueryTest < ActiveSupport::TestCase assert issues.all? {|i| i.custom_field_value(2).blank?} end - def test_operator_none_for_text + def test_operator_none_for_blank_text query = IssueQuery.new(:name => '_') query.add_filter('status_id', '*', ['']) query.add_filter('description', '!*', ['']) @@ -226,6 +226,19 @@ class QueryTest < ActiveSupport::TestCase assert_equal [11, 12], issues.map(&:id).sort end + def test_operator_any_for_blank_text + Issue.where(id: [1, 2]).update_all(description: '') + query = IssueQuery.new(:name => '_') + query.add_filter('status_id', '*', ['']) + query.add_filter('description', '*', ['']) + assert query.has_filter?('description') + issues = find_issues_with_query(query) + + assert issues.any? + assert issues.all? {|i| i.description.present?} + assert_empty issues.map(&:id) & [1, 2] + end + def test_operator_all query = IssueQuery.new(:project => Project.find(1), :name => '_') query.add_filter('fixed_version_id', '*', [''])