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

    def ==(other)
      Nil === other
    end
  end
end