class Sequel::SQL::IsDistinctFrom

Represents an SQL expression using the IS DISTINCT FROM operator.

Attributes

lhs[R]

The left hand side of the IS DISTINCT FROM expression.

rhs[R]

The right hand side of the IS DISTINCT FROM expression.

Public Class Methods

new(lhs, rhs) click to toggle source
    # File lib/sequel/extensions/is_distinct_from.rb
107 def initialize(lhs, rhs)
108   @lhs = lhs
109   @rhs = rhs
110 end