Class: ArelExtensions::Nodes::Collate
- Defined in:
- lib/arel_extensions/nodes/collate.rb
Constant Summary collapse
- RETURN_TYPE =
:string
Instance Attribute Summary collapse
-
#ai ⇒ Object
Returns the value of attribute ai.
-
#ci ⇒ Object
Returns the value of attribute ci.
-
#option ⇒ Object
Returns the value of attribute option.
Instance Method Summary collapse
-
#initialize(left, option = nil, ai = false, ci = false) ⇒ Collate
constructor
A new instance of Collate.
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
Constructor Details
#initialize(left, option = nil, ai = false, ci = false) ⇒ Collate
Returns a new instance of Collate.
8 9 10 11 12 13 14 |
# File 'lib/arel_extensions/nodes/collate.rb', line 8 def initialize left, option=nil, ai=false, ci=false @ai = ai @ci = ci @option = option tab = [convert_to_node(left)] return super(tab) end |
Instance Attribute Details
#ai ⇒ Object
Returns the value of attribute ai.
6 7 8 |
# File 'lib/arel_extensions/nodes/collate.rb', line 6 def ai @ai end |
#ci ⇒ Object
Returns the value of attribute ci.
6 7 8 |
# File 'lib/arel_extensions/nodes/collate.rb', line 6 def ci @ci end |
#option ⇒ Object
Returns the value of attribute option.
6 7 8 |
# File 'lib/arel_extensions/nodes/collate.rb', line 6 def option @option end |