aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/group.rb
blob: 57a7c579da2a012c55d71031867b45972effc315 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module Arel
  module Nodes
    class Group
      attr_accessor :expr

      def initialize expr
        @expr = expr
      end
    end
  end
end