diff options
author | Yasuo Honda <yasuo.honda@gmail.com> | 2014-05-05 23:10:38 +0900 |
---|---|---|
committer | Yasuo Honda <yasuo.honda@gmail.com> | 2014-05-05 23:12:33 +0900 |
commit | 801a1516d0a219ce530a45f0a2e65a35b04c30eb (patch) | |
tree | fee6c79ab9ab0d62be9ae13b1c959d4716ac3bc0 /test/visitors | |
parent | e7461065c5dc79191f98027efbf9a65dcd84f7b1 (diff) | |
download | rails-801a1516d0a219ce530a45f0a2e65a35b04c30eb.tar.gz rails-801a1516d0a219ce530a45f0a2e65a35b04c30eb.tar.bz2 rails-801a1516d0a219ce530a45f0a2e65a35b04c30eb.zip |
Support to add the casting node to the AST at build time
Ref https://github.com/rails/arel/commit/93d72131bcc24ccb5536bec672d2dac94f8de651
Diffstat (limited to 'test/visitors')
-rw-r--r-- | test/visitors/test_oracle.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/visitors/test_oracle.rb b/test/visitors/test_oracle.rb index bb0fe404e8..9111a266cf 100644 --- a/test/visitors/test_oracle.rb +++ b/test/visitors/test_oracle.rb @@ -100,7 +100,7 @@ module Arel it 'creates a different subquery when there is an offset' do stmt = Nodes::SelectStatement.new - stmt.limit = Nodes::Limit.new(10) + stmt.limit = Nodes::Limit.new(Nodes.build_quoted(10)) stmt.offset = Nodes::Offset.new(10) sql = compile stmt sql.must_be_like %{ @@ -115,7 +115,7 @@ module Arel it 'is idempotent with different subquery' do stmt = Nodes::SelectStatement.new - stmt.limit = Nodes::Limit.new(10) + stmt.limit = Nodes::Limit.new(Nodes.build_quoted(10)) stmt.offset = Nodes::Offset.new(10) sql = compile stmt sql2 = compile stmt |