method

predicates_with_wrapped_sql_literals

predicates_with_wrapped_sql_literals()
private

No documentation available.

# File activerecord/lib/active_record/relation/where_clause.rb, line 151
      def predicates_with_wrapped_sql_literals
        non_empty_predicates.map do |node|
          if Arel::Nodes::Equality === node
            node
          else
            wrap_sql_literal(node)
          end
        end
      end