class Sequel::SQL::IsDistinctFrom

  1. lib/sequel/extensions/is_distinct_from.rb
Superclass: GenericExpression

Represents an SQL expression using the IS DISTINCT FROM operator.

Methods

Public Class

  1. new

Public Instance

  1. lhs
  2. rhs

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)
[show source]
    # File lib/sequel/extensions/is_distinct_from.rb
107 def initialize(lhs, rhs)
108   @lhs = lhs
109   @rhs = rhs
110 end