diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-04-29 17:13:53 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-04-29 17:13:53 -0300 |
commit | bb05bf01ce7243aba06ba0fd6e7a3da65aa77fbb (patch) | |
tree | 435f45b71a5f9ca16710e8efae924ff164b363f8 /test/visitors | |
parent | de916331c3536db839f844034176bf321d94efa7 (diff) | |
parent | 1a2bf3df0e3350142d36a51d351ed38523b9f63c (diff) | |
download | rails-bb05bf01ce7243aba06ba0fd6e7a3da65aa77fbb.tar.gz rails-bb05bf01ce7243aba06ba0fd6e7a3da65aa77fbb.tar.bz2 rails-bb05bf01ce7243aba06ba0fd6e7a3da65aa77fbb.zip |
Merge pull request #162 from dylanahsmith/quote-integers
Test quoting integers when comparing a string column with integers.
Diffstat (limited to 'test/visitors')
-rw-r--r-- | test/visitors/test_to_sql.rb | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/test/visitors/test_to_sql.rb b/test/visitors/test_to_sql.rb index eb102c1905..05e75b5e0d 100644 --- a/test/visitors/test_to_sql.rb +++ b/test/visitors/test_to_sql.rb @@ -119,6 +119,12 @@ module Arel sql.must_be_like %{ "users"."id" = 1 } end + it 'should use the column to quote integers' do + table = Table.new(:users) + sql = compile table[:name].eq(0) + sql.must_be_like %{ "users"."name" = '0' } + end + it 'should handle nil' do sql = compile Nodes::Equality.new(@table[:name], nil) sql.must_be_like %{ "users"."name" IS NULL } @@ -160,6 +166,12 @@ module Arel assert_match(/LIMIT 'omg'/, compile(sc)) end + it "should quote LIMIT without column type coercion" do + table = Table.new(:users) + sc = table.where(table[:name].eq(0)).take(1).ast + assert_match(/WHERE "users"."name" = '0' LIMIT 1/, compile(sc)) + end + it "should visit_DateTime" do called_with = nil @conn.connection.extend(Module.new { @@ -179,9 +191,9 @@ module Arel end it "should visit_Float" do - test = Table.new(:users)[:name].eq 2.14 + test = Table.new(:products)[:price].eq 2.14 sql = compile test - sql.must_be_like %{"users"."name" = 2.14} + sql.must_be_like %{"products"."price" = 2.14} end it "should visit_Not" do |