aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/relations/utilities/nil.rb
blob: 56cf395d2c473bf16c58e874876e5286d9030795 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
require 'singleton'

module Arel
  class Nil < Relation
    include Singleton

    def table_sql(formatter = nil); '' end
    def name; '' end
  end
end