aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/engines/sql/extensions/nil_class.rb
blob: 8c335f904ae6c31066291a5024cc4652be4b8618 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module Arel
  module Sql
    module NilClassExtensions
      def equality_predicate_sql
        'IS'
      end
      
      NilClass.send(:include, self)
    end
  end
end