class Sequel::SQL::IsDistinctFrom
Represents an SQL
expression using the IS DISTINCT FROM operator.
Attributes
The left hand side of the IS DISTINCT FROM expression.
The right hand side of the IS DISTINCT FROM expression.
Public Class Methods
Source
# File lib/sequel/extensions/is_distinct_from.rb 107 def initialize(lhs, rhs) 108 @lhs = lhs 109 @rhs = rhs 110 end