Class: Arel::Nodes::InsertStatement
- Defined in:
- lib/arel/nodes/insert_statement.rb
Instance Attribute Summary collapse
-
#columns ⇒ Object
Returns the value of attribute columns.
-
#relation ⇒ Object
Returns the value of attribute relation.
-
#select ⇒ Object
Returns the value of attribute select.
-
#values ⇒ Object
Returns the value of attribute values.
Instance Method Summary collapse
- #eql?(other) ⇒ Boolean (also: #==)
- #hash ⇒ Object
-
#initialize ⇒ InsertStatement
constructor
A new instance of InsertStatement.
- #initialize_copy(other) ⇒ Object
Methods inherited from Node
#_caller, #and, #each, #not, #or, #to_sql
Methods included from FactoryMethods
#create_and, #create_false, #create_join, #create_on, #create_string_join, #create_table_alias, #create_true, #grouping, #lower
Constructor Details
#initialize ⇒ InsertStatement
Returns a new instance of InsertStatement.
6 7 8 9 10 11 12 |
# File 'lib/arel/nodes/insert_statement.rb', line 6 def initialize super() @relation = nil @columns = [] @values = nil @select = nil end |
Instance Attribute Details
#columns ⇒ Object
Returns the value of attribute columns.
4 5 6 |
# File 'lib/arel/nodes/insert_statement.rb', line 4 def columns @columns end |
#relation ⇒ Object
Returns the value of attribute relation.
4 5 6 |
# File 'lib/arel/nodes/insert_statement.rb', line 4 def relation @relation end |
#select ⇒ Object
Returns the value of attribute select.
4 5 6 |
# File 'lib/arel/nodes/insert_statement.rb', line 4 def select @select end |
#values ⇒ Object
Returns the value of attribute values.
4 5 6 |
# File 'lib/arel/nodes/insert_statement.rb', line 4 def values @values end |
Instance Method Details
#eql?(other) ⇒ Boolean Also known as: ==
25 26 27 28 29 30 31 |
# File 'lib/arel/nodes/insert_statement.rb', line 25 def eql? other self.class == other.class && self.relation == other.relation && self.columns == other.columns && self.select == other.select && self.values == other.values end |
#hash ⇒ Object
21 22 23 |
# File 'lib/arel/nodes/insert_statement.rb', line 21 def hash [@relation, @columns, @values, @select].hash end |
#initialize_copy(other) ⇒ Object
14 15 16 17 18 19 |
# File 'lib/arel/nodes/insert_statement.rb', line 14 def initialize_copy other super @columns = @columns.clone @values = @values.clone if @values @select = @select.clone if @select end |