Class: ArelExtensions::Nodes::Cast
- Defined in:
- lib/arel_extensions/nodes/cast.rb
Constant Summary
Constants inherited from Function
Instance Attribute Summary collapse
-
#as_attr ⇒ Object
Returns the value of attribute as_attr.
Instance Method Summary collapse
- #+(other) ⇒ Object
-
#initialize(expr) ⇒ Cast
constructor
A new instance of Cast.
- #return_type ⇒ Object
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
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 |
# 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', 'text', 'nchar', 'nvarchar', 'ntext' @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)] return super(tab) end |
Instance Attribute Details
#as_attr ⇒ Object
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
35 36 37 38 39 40 41 42 43 44 |
# File 'lib/arel_extensions/nodes/cast.rb', line 35 def +(other) case @return_type when :string return ArelExtensions::Nodes::Concat.new [self, other] when :ruby_time ArelExtensions::Nodes::DateAdd.new [self, other] else Arel::Nodes::Grouping.new(Arel::Nodes::Addition.new self, other) end end |
#return_type ⇒ Object
46 47 48 |
# File 'lib/arel_extensions/nodes/cast.rb', line 46 def return_type @return_type end |