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