aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/visitors
diff options
context:
space:
mode:
authorSean Griffin <sean@seantheprogrammer.com>2015-12-17 12:55:27 -0700
committerSean Griffin <sean@seantheprogrammer.com>2015-12-17 12:55:34 -0700
commit1dba173bbbf53b8734e01ff49479c58a55234ffa (patch)
tree55e2b126325cbfea1348bcd856610ce8d9f8bcc0 /lib/arel/visitors
parentdad0e081c4dc9dbbcdb195ff4e7f9ad4d2bc6de3 (diff)
parentcd395b9419ac3a860ee78cf9706af1bf7d86fe92 (diff)
downloadrails-1dba173bbbf53b8734e01ff49479c58a55234ffa.tar.gz
rails-1dba173bbbf53b8734e01ff49479c58a55234ffa.tar.bz2
rails-1dba173bbbf53b8734e01ff49479c58a55234ffa.zip
Merge pull request #349 from edpaget/delegate-where-sql-visitor
Delegate to Connection Visitor in WhereSQL Visitor
Diffstat (limited to 'lib/arel/visitors')
-rw-r--r--lib/arel/visitors/where_sql.rb11
1 files changed, 10 insertions, 1 deletions
diff --git a/lib/arel/visitors/where_sql.rb b/lib/arel/visitors/where_sql.rb
index afde15a6c5..41972d5836 100644
--- a/lib/arel/visitors/where_sql.rb
+++ b/lib/arel/visitors/where_sql.rb
@@ -1,11 +1,20 @@
module Arel
module Visitors
class WhereSql < Arel::Visitors::ToSql
+ def initialize(inner_visitor, *args, &block)
+ @inner_visitor = inner_visitor
+ super(*args, &block)
+ end
+
private
def visit_Arel_Nodes_SelectCore o, collector
collector << "WHERE "
- inject_join o.wheres, collector, ' AND '
+ wheres = o.wheres.map do |where|
+ Nodes::SqlLiteral.new(@inner_visitor.accept(where, collector.class.new).value)
+ end
+
+ inject_join wheres, collector, ' AND '
end
end
end