aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/relations/nil.rb
blob: 3c1d413953746da70bb464e67d4e9704090cd0e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
module Arel
  class Nil < Relation
    def table_sql; '' end
    
    def to_s; '' end
    
    def ==(other)
      self.class == other.class
    end
  end
  
end