aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/relation/where_test.rb
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2013-02-07 18:45:25 -0800
committerGuillermo Iguaran <guilleiguaran@gmail.com>2013-02-07 18:45:25 -0800
commit00e0b258eefab192a2012df9cf0680d214c89504 (patch)
treec57b23a3197d773dcce73a322806f49833208dbf /activerecord/test/cases/relation/where_test.rb
parentb4f189a162f4280b360dbc2a6635bbff6c6f09bc (diff)
parent04c2d2e2e4197a1564c33f09d3e52253d845925f (diff)
downloadrails-00e0b258eefab192a2012df9cf0680d214c89504.tar.gz
rails-00e0b258eefab192a2012df9cf0680d214c89504.tar.bz2
rails-00e0b258eefab192a2012df9cf0680d214c89504.zip
Merge pull request #9208 from dylanahsmith/3-2-mysql-quote-numeric
[3.2] active_record: Quote numeric values compared to string columns.
Diffstat (limited to 'activerecord/test/cases/relation/where_test.rb')
-rw-r--r--activerecord/test/cases/relation/where_test.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/activerecord/test/cases/relation/where_test.rb b/activerecord/test/cases/relation/where_test.rb
index 80158332f9..0529945532 100644
--- a/activerecord/test/cases/relation/where_test.rb
+++ b/activerecord/test/cases/relation/where_test.rb
@@ -35,5 +35,30 @@ module ActiveRecord
def test_where_with_empty_hash_and_no_foreign_key
assert_equal 0, Edge.where(:sink => {}).count
end
+
+ def test_where_with_integer_for_string_column
+ count = Post.where(:title => 0).count
+ assert_equal 0, count
+ end
+
+ def test_where_with_float_for_string_column
+ count = Post.where(:title => 0.0).count
+ assert_equal 0, count
+ end
+
+ def test_where_with_boolean_for_string_column
+ count = Post.where(:title => false).count
+ assert_equal 0, count
+ end
+
+ def test_where_with_decimal_for_string_column
+ count = Post.where(:title => BigDecimal.new(0)).count
+ assert_equal 0, count
+ end
+
+ def test_where_with_duration_for_string_column
+ count = Post.where(:title => 0.seconds).count
+ assert_equal 0, count
+ end
end
end