Class: ActiveRecord::Refined::AST::Cast

Inherits:
Node
  • Object
show all
Includes:
Arithmetics, Predications
Defined in:
lib/active_record/refined/ast.rb

Overview

CAST(expr AS type). The type is grammar too, written into the SQL as given -- it is the adapter's own name for the type, and whether it exists is the database's to say -- so it has to look like one: a plain name, at most parenthesized with lengths.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Arithmetics

#&, #*, #+, #-, #/, #<<, #>>, #^, #|, #~

Methods included from Predications

#!=, #!~, #<, #<=, #==, #=~, #>, #>=, #between?, #bury, #casecmp?, #contains?, #dig, #dig_json, #distinct_from?, #end_with?, #false?, #ilike?, #in?, #include?, #intersect?, #key?, #like?, #member?, #not_between?, #not_distinct_from?, #not_false?, #not_ilike?, #not_in?, #not_like?, #not_null?, #not_true?, #null?, #start_with?, #subset?, #superset?, #true?, #when

Methods inherited from Node

#as, #asc, #desc

Constructor Details

#initialize(operand, sql_type) ⇒ Cast

Returns a new instance of Cast.



1085
1086
1087
1088
# File 'lib/active_record/refined/ast.rb', line 1085

def initialize(operand, sql_type)
  @operand = operand
  @sql_type = AST.check_name(sql_type, TYPE_NAME, "SQL type")
end

Instance Attribute Details

#operandObject (readonly)

Returns the value of attribute operand.



1083
1084
1085
# File 'lib/active_record/refined/ast.rb', line 1083

def operand
  @operand
end

#sql_typeObject (readonly)

Returns the value of attribute sql_type.



1083
1084
1085
# File 'lib/active_record/refined/ast.rb', line 1083

def sql_type
  @sql_type
end

Instance Method Details

#to_arel(table, model) ⇒ Object



1090
1091
1092
1093
1094
1095
# File 'lib/active_record/refined/ast.rb', line 1090

def to_arel(table, model)
  Arel::Nodes::NamedFunction.new(
    "CAST",
    [Arel::Nodes::As.new(to_arel_argument(operand, table, model),
                         Arel::Nodes::SqlLiteral.new(sql_type.to_s))])
end