diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2011-02-09 13:35:26 -0800 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2011-02-09 13:35:56 -0800 |
commit | 5548e47adbb6dda320cd09ecb696c568896aa6f1 (patch) | |
tree | f325696e204d94cf67b0a7ba204ebdd329093061 | |
parent | 056be15212a8645d17534f993c1e89bd2dcf7df9 (diff) | |
download | rails-5548e47adbb6dda320cd09ecb696c568896aa6f1.tar.gz rails-5548e47adbb6dda320cd09ecb696c568896aa6f1.tar.bz2 rails-5548e47adbb6dda320cd09ecb696c568896aa6f1.zip |
rawr, mysql, mysql2, why do you hate me. :'(
-rw-r--r-- | activerecord/test/cases/base_test.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/activerecord/test/cases/base_test.rb b/activerecord/test/cases/base_test.rb index ef6b741acd..6a61dcdb47 100644 --- a/activerecord/test/cases/base_test.rb +++ b/activerecord/test/cases/base_test.rb @@ -95,8 +95,10 @@ class BasicsTest < ActiveRecord::TestCase end end - def test_limit_should_allow_sql_literal - assert_equal 1, Topic.limit(Arel.sql('(2 - 1)')).all.length + unless current_adapter?(:MysqlAdapter) || current_adapter?(:Mysql2Adapter) + def test_limit_should_allow_sql_literal + assert_equal 1, Topic.limit(Arel.sql('2-1')).all.length + end end def test_select_symbol |