Class: ArelExtensions::Nodes::Cast

Inherits:
Function show all
Defined in:
lib/arel_extensions/nodes/cast.rb

Constant Summary

Constants inherited from Function

Function::MBSTRING, Function::RETURN_TYPE

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Function

#!=, #==, #as, #convert_to_date_node, #convert_to_datetime_node, #convert_to_node, #convert_to_number, #convert_to_string_node, #expr, #left, #right, #type_of_attribute

Methods included from Predications

#cast, #convert_to_node, #imatches, #in, #matches, #not_in, #when

Methods inherited from Arel::Nodes::Function

#as

Methods included from ArelExtensions::NullFunctions

#coalesce, #coalesce_blank, #if_present, #is_not_null, #is_null

Methods included from BooleanFunctions

#and, #or, #then, #⋀, #⋁

Methods included from StringFunctions

#&, #[], #ai_collate, #ai_imatches, #ai_matches, #blank, #byte_length, #char_length, #ci_collate, #collate, #concat, #downcase, #edit_distance, #group_concat, #idoes_not_match, #idoes_not_match_all, #idoes_not_match_any, #imatches, #imatches_all, #imatches_any, #length, #levenshtein_distance, #locate, #ltrim, #md5, #not_blank, #regexp_replace, #repeat, #replace, #rtrim, #smatches, #soundex, #substring, #trim, #upcase

Methods included from MathFunctions

#*, #/, #abs, #ceil, #floor, #format_number, #log10, #pow, #power, #round, #std, #sum, #variance

Methods included from DateDuration

#day, #format, #format_date, #hour, #minute, #month, #second, #wday, #week, #year

Methods included from Comparators

#!~, #<, #<=, #=~, #>, #>=

Methods included from Math

#-

Methods included from Aliases

#xas

Constructor Details

#initialize(expr) ⇒ Cast

Returns a new instance of Cast.



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/arel_extensions/nodes/cast.rb', line 8

def initialize expr
  @as_attr = expr[1]
  case expr[1]
  when :int, 'bigint', 'int', 'smallint', 'tinyint', 'bit'
    @return_type = :int
  when :float, :decimal, 'decimal', 'numeric', 'money', 'smallmoney', 'float', 'real'
    @return_type = :decimal
  when :number
    @return_type = :number
  when 'char', 'varchar', 'nchar', 'nvarchar'
    @return_type = :string
  when 'text', :text, 'ntext', :ntext
    @as_attr = expr[1].to_sym
    @return_type = :string
  when :datetime, 'datetime', 'smalldatetime'
    @return_type = :datetime
  when :time, 'time'
    @return_type = :time
  when :date, 'date'
    @return_type = :date
  when :binary, 'binary', 'varbinary', 'image'
    @return_type = :binary
  else
    @return_type = :string
    @as_attr = :string
  end
  tab = [convert_to_node(expr.first)]
  super(tab)
end

Instance Attribute Details

#as_attrObject

Returns the value of attribute as_attr.



6
7
8
# File 'lib/arel_extensions/nodes/cast.rb', line 6

def as_attr
  @as_attr
end

Instance Method Details

#+(other) ⇒ Object



38
39
40
41
42
43
44
45
46
47
# File 'lib/arel_extensions/nodes/cast.rb', line 38

def +(other)
  case @return_type
  when :string
    ArelExtensions::Nodes::Concat.new [self, other]
  when :ruby_time
    ArelExtensions::Nodes::DateAdd.new [self, other]
  else
    Arel.grouping(Arel::Nodes::Addition.new self, other)
  end
end

#return_typeObject



49
50
51
# File 'lib/arel_extensions/nodes/cast.rb', line 49

def return_type
  @return_type
end