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 1126 1126: def initialize(expr, type) 1127: @expr = expr 1128: @type = type 1129: end
[Validate]