method

where_sql

where_sql(engine = Table.engine)
public

No documentation available.

# File activerecord/lib/arel/select_manager.rb, line 186
    def where_sql(engine = Table.engine)
      return if @ctx.wheres.empty?

      Nodes::SqlLiteral.new("WHERE #{Nodes::And.new(@ctx.wheres).to_sql(engine)}")
    end