Represents a cast of an SQL expression to a specific type.
Set the attributes to the given arguments
[Source]
# File lib/sequel/sql.rb, line 513 513: def initialize(expr, type) 514: @expr = expr 515: @type = type 516: end
[Validate]