Class: ArelExtensions::Nodes::DateDiff
- Inherits:
-
Function
- Object
- Arel::Nodes::Function
- Function
- ArelExtensions::Nodes::DateDiff
- Defined in:
- lib/arel_extensions/nodes/date_diff.rb
Overview
difference entre colonne date et date string/date
Constant Summary collapse
- RETURN_TYPE =
by default…
:integer
Constants inherited from Function
Instance Attribute Summary collapse
-
#left_node_type ⇒ Object
Returns the value of attribute left_node_type.
-
#right_node_type ⇒ Object
Returns the value of attribute right_node_type.
Instance Method Summary collapse
-
#initialize(expr) ⇒ DateDiff
constructor
A new instance of DateDiff.
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, #return_type, #right, #type_of_attribute
Methods included from Predications
#cast, #convert_to_node, #imatches, #in, #matches, #not_in, #when
Methods inherited from Arel::Nodes::Function
Methods included from ArelExtensions::NullFunctions
#coalesce, #coalesce_blank, #if_present, #is_not_null, #is_null
Methods included from BooleanFunctions
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
Constructor Details
#initialize(expr) ⇒ DateDiff
Returns a new instance of DateDiff.
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/date_diff.rb', line 11 def initialize(expr) res = [] col = expr.first case col when Arel::Nodes::Node, Arel::Attributes::Attribute @left_node_type = type_of_attribute(col) when Date @left_node_type = :ruby_date when DateTime, Time @left_node_type = :ruby_time end res << (%i[date ruby_date].include?(@left_node_type) ? convert_to_date_node(col) : convert_to_datetime_node(col)) case expr[1] when Arel::Nodes::Node, Arel::Attributes::Attribute @right_node_type = type_of_attribute(expr[1]) when Date @right_node_type = :ruby_date when DateTime, Time @right_node_type = :ruby_time end res << (%i[date ruby_date].include?(@left_node_type) ? convert_to_date_node(expr[1]) : convert_to_datetime_node(expr[1])) super res end |
Instance Attribute Details
#left_node_type ⇒ Object
Returns the value of attribute left_node_type.
6 7 8 |
# File 'lib/arel_extensions/nodes/date_diff.rb', line 6 def left_node_type @left_node_type end |
#right_node_type ⇒ Object
Returns the value of attribute right_node_type.
7 8 9 |
# File 'lib/arel_extensions/nodes/date_diff.rb', line 7 def right_node_type @right_node_type end |