aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/grouping.rb
blob: d52671f169d82b412925ee93fed79678bf0a08b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module Arel
  module Nodes
    class Grouping < Arel::Nodes::Node
      attr_accessor :expr

      def initialize expression
        @expr = expression
      end
    end
  end
end