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