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 643 643: def initialize(expr, type) 644: @expr = expr 645: @type = type 646: end
[Validate]