diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2019-03-11 01:30:40 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2019-03-11 01:35:46 +0900 |
commit | 260a3c65122a726eea20828d4909e15502751c39 (patch) | |
tree | c8db53f063248e33d4377cee9e1721d8f697e0e3 /activerecord/lib | |
parent | b75d6ea5d35d61c60f2675ed956c51e71d2b07ad (diff) | |
parent | 81bc621ed01637e8305fb53c9e504b1cc46c102f (diff) | |
download | rails-260a3c65122a726eea20828d4909e15502751c39.tar.gz rails-260a3c65122a726eea20828d4909e15502751c39.tar.bz2 rails-260a3c65122a726eea20828d4909e15502751c39.zip |
Merge pull request #35320 from kamille-gz/fix_query_method_when_given_Date_data_type
Fix ActiveRecord query attribute method when given value does't respond to to_i method
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/attribute_methods/query.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/attribute_methods/query.rb b/activerecord/lib/active_record/attribute_methods/query.rb index 6757e9b66a..6811f54b10 100644 --- a/activerecord/lib/active_record/attribute_methods/query.rb +++ b/activerecord/lib/active_record/attribute_methods/query.rb @@ -16,8 +16,7 @@ module ActiveRecord when true then true when false, nil then false else - column = self.class.columns_hash[attr_name] - if column.nil? + if !type_for_attribute(attr_name) { false } if Numeric === value || value !~ /[^0-9]/ !value.to_i.zero? else |