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

      def initialize expr
        @expr = expr
      end
    end
  end
end