Class: Sequel::SQL::Cast

Inherits:
GenericExpression show all
Defined in:
lib/sequel/sql.rb

Overview

Represents a cast of an SQL expression to a specific type.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from SubscriptMethods

#sql_subscript

Methods included from StringMethods

#ilike, #like

Methods included from OrderMethods

#asc, #desc

Methods included from ComplexExpressionMethods

#extract, #sql_boolean, #sql_number, #sql_string

Methods included from CastMethods

#cast, #cast_numeric, #cast_string

Methods included from BooleanMethods

#~

Methods included from AliasMethods

#as

Methods inherited from Expression

#==, attr_reader, comparison_attrs, #eql?, #hash, #inspect, #lit, #sql_literal

Constructor Details

#initialize(expr, type) ⇒ Cast

Set the attributes to the given arguments



643
644
645
646
# File 'lib/sequel/sql.rb', line 643

def initialize(expr, type)
  @expr = expr
  @type = type
end

Instance Attribute Details

#exprObject (readonly)

The expression to cast



637
638
639
# File 'lib/sequel/sql.rb', line 637

def expr
  @expr
end

#typeObject (readonly)

The type to which to cast the expression



640
641
642
# File 'lib/sequel/sql.rb', line 640

def type
  @type
end