mirror of
https://github.com/meineerde/redmine.git
synced 2026-02-01 03:57:15 +00:00
Fix PostgreSQL error caused by comparing text with integer values (#38527).
git-svn-id: https://svn.redmine.org/redmine/trunk@22242 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
3cd73c205e
commit
e8d8d6b7f1
@ -1456,11 +1456,11 @@ class Query < ActiveRecord::Base
|
||||
" AND #{JournalDetail.table_name}.property = 'attr'" +
|
||||
" AND #{JournalDetail.table_name}.prop_key = '#{db_field}'" +
|
||||
" AND " +
|
||||
queried_class.send(:sanitize_sql_for_conditions, ["#{JournalDetail.table_name}.old_value IN (?)", value]) +
|
||||
queried_class.send(:sanitize_sql_for_conditions, ["#{JournalDetail.table_name}.old_value IN (?)", value.map(&:to_s)]) +
|
||||
")"
|
||||
if %w[ev !ev].include?(operator)
|
||||
subquery <<
|
||||
" OR " + queried_class.send(:sanitize_sql_for_conditions, ["#{db_table}.#{db_field} IN (?)", value])
|
||||
" OR " + queried_class.send(:sanitize_sql_for_conditions, ["#{db_table}.#{db_field} IN (?)", value.map(&:to_s)])
|
||||
end
|
||||
sql = "#{neg} EXISTS (#{subquery})"
|
||||
else
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user