Represents a cast of an SQL
expression to a specific type.
Public Class methods
new(expr, type)
Set the expression and type for the cast
[show source]
# File lib/sequel/sql.rb 1244 def initialize(expr, type) 1245 @expr = expr 1246 @type = type 1247 freeze 1248 end