method

is_distinct_from

rails latest stable - Class: Arel::Visitors::Oracle12

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v6.0.0) is shown here.

is_distinct_from(o, collector)
private

No documentation available.

# File activerecord/lib/arel/visitors/oracle12.rb, line 59
        def is_distinct_from(o, collector)
          collector << "DECODE("
          collector = visit [o.left, o.right, 0, 1], collector
          collector << ")"
        end