aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/arel/nodes/values_list.rb
blob: 1a9d9ebf01e1da060524e7f4256b003969d239d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Arel # :nodoc: all
  module Nodes
    class ValuesList < Unary
      alias :rows :expr
    end
  end
end