aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/exists.rb
blob: 167a345006cb4d377c3e43dd940eea98844f0aca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module Arel
  module Nodes
    class Exists
      attr_reader :select_stmt

      def initialize select_stmt
        @select_stmt = select_stmt
      end
    end
  end
end