aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/in.rb
blob: 13163af11e6e9764c58313f02ade215915c6e266 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module Arel
  module Nodes
    class In < Equality
      def initialize left, right
        raise if Arel::SelectManager === right
        super
      end
    end
  end
end