1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/lib/arel/nodes/exists.rb

11 lines
172 B
Ruby

module Arel
module Nodes
class Exists
attr_reader :select_stmt
def initialize select_stmt
@select_stmt = select_stmt
end
end
end
end