aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/insert_statement.rb
blob: ec8870a1c2b797d707eadc35f775f33063ff49ee (plain) (blame)
1
2
3
4
5
6
7
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
module Arel
  module Nodes
    class InsertStatement < Arel::Nodes::Node
      attr_accessor :relation, :columns, :values

      def initialize
        super()
        @relation = nil
        @columns  = []
        @values   = nil
      end

      def initialize_copy other
        super
        @columns = @columns.clone
        @values =  @values.clone if @values
      end

      def hash
        [@relation, @columns, @values].hash
      end

      def eql? other
        self.class == other.class &&
          self.relation == other.relation &&
          self.columns == other.columns &&
          self.values == other.values
      end
      alias :== :eql?
    end
  end
end