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 1014 1014: def initialize(expr, type) 1015: @expr = expr 1016: @type = type 1017: end
[Validate]