class ActiveRecord::Relation::WhereClause

def wrap_sql_literal(node)

Experimental RBS support (using type sampling data from the type_fusion project).

def wrap_sql_literal: (Arel::Nodes::SqlLiteral node) -> Arel::Nodes::Grouping

This signature was generated using 29 samples from 1 application.

def wrap_sql_literal(node)
  if ::String === node
    node = Arel.sql(node)
  end
  Arel::Nodes::Grouping.new(node)
end