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