# rubocop:disable Naming/MethodName # rubocop:disable Naming/UncommunicativeMethodParamName module Arel module Nodes class NotDistinctFrom < Arel::Nodes::Binary end end module Visitors class ToSql def visit_Arel_Nodes_NotDistinctFrom(o, collector) visit o.left, collector collector << ' IS NOT DISTINCT FROM ' visit o.right, collector end end end end # rubocop:enable Naming/MethodName # rubocop:enable Naming/UncommunicativeMethodParamName