summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2024-01-03 07:36:05 +0000
committerGo MAEDA <maeda@farend.jp>2024-01-03 07:36:05 +0000
commit9dc0bfa9bf4be310f6ce6e1038d858bd1236fc80 (patch)
tree13a9c36261298bbca987fdfed994499c05072821
parentbcf7044104f7398e941ffd4ce0238d56ab6f249e (diff)
downloadredmine-9dc0bfa9bf4be310f6ce6e1038d858bd1236fc80.tar.gz
redmine-9dc0bfa9bf4be310f6ce6e1038d858bd1236fc80.zip
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
-rw-r--r--app/models/query.rb2
-rw-r--r--test/unit/query_test.rb15
2 files changed, 15 insertions, 2 deletions
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', '*', [''])