aboutsummaryrefslogblamecommitdiffstats
path: root/lib/arel/nodes/values_list.rb
blob: b39aaa14654b322b9effdfc03d306fcbc551f813 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                             
# frozen_string_literal: true
module Arel
  module Nodes
    class ValuesList < Node
      attr_reader :rows

      def initialize(rows)
        @rows = rows
        super()
      end
    end
  end
end