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 Postgres::HStoreOpMethods

#hstore

Methods included from Postgres::RangeOpMethods

#pg_range

Methods included from Postgres::ArrayOpMethods

#pg_array

Methods included from Postgres::JSONOpMethods

#pg_json, #pg_jsonb

Methods included from Postgres::InetOpMethods

#pg_inet

Methods included from Postgres::PGRowOp::ExpressionMethods

#pg_row

Methods included from SubscriptMethods

#sql_subscript

Methods included from StringMethods

#ilike, #like

Methods included from PatternMatchMethods

#=~

Methods included from OrderMethods

#asc, #desc

Methods included from NumericMethods

#+

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, #eql?, #hash, inherited, #inspect, #lit, #sql_literal

Constructor Details

#initialize(expr, type) ⇒ Cast

Set the attributes to the given arguments



1156
1157
1158
1159
# File 'lib/sequel/sql.rb', line 1156

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

Instance Attribute Details

#exprObject (readonly)

The expression to cast



1150
1151
1152
# File 'lib/sequel/sql.rb', line 1150

def expr
  @expr
end

#typeObject (readonly)

The type to which to cast the expression



1153
1154
1155
# File 'lib/sequel/sql.rb', line 1153

def type
  @type
end