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, line 106
def initialize(lhs, rhs)
  @lhs = lhs
  @rhs = rhs
end