Represents a cast of an SQL expression to a specific type.
The expression to cast
The type to which to cast the expression
Set the expression and type for the cast
# File lib/sequel/sql.rb, line 1177 def initialize(expr, type) @expr = expr @type = type freeze end