Class: Sequel::SQL::IsDistinctFrom
- Inherits:
-
GenericExpression
- Object
- Expression
- GenericExpression
- Sequel::SQL::IsDistinctFrom
- Defined in:
- lib/sequel/extensions/is_distinct_from.rb
Overview
Represents an SQL expression using the IS DISTINCT FROM operator.
Defined Under Namespace
Modules: DatasetMethods, Methods
Instance Attribute Summary collapse
-
#lhs ⇒ Object
readonly
The left hand side of the IS DISTINCT FROM expression.
-
#rhs ⇒ Object
readonly
The right hand side of the IS DISTINCT FROM expression.
Instance Method Summary collapse
-
#initialize(lhs, rhs) ⇒ IsDistinctFrom
constructor
A new instance of IsDistinctFrom.
Methods included from Methods
Methods included from Sequel::SQLite::JSONOpMethods
#sqlite_json_op, #sqlite_jsonb_op
Methods included from Postgres::HStoreOpMethods
Methods included from Postgres::RangeOpMethods
Methods included from Postgres::ArrayOpMethods
Methods included from Postgres::JSONOpMethods
Methods included from Postgres::InetOpMethods
Methods included from Postgres::PGRowOp::ExpressionMethods
Methods included from SubscriptMethods
Methods included from StringMethods
#escaped_ilike, #escaped_like, #ilike, #like
Methods included from PatternMatchMethods
Methods included from OrderMethods
Methods included from NumericMethods
Methods included from ComplexExpressionMethods
#extract, #sql_boolean, #sql_number, #sql_string
Methods included from CastMethods
#cast, #cast_numeric, #cast_string
Methods included from BooleanMethods
Methods included from AliasMethods
Methods inherited from Expression
#==, attr_reader, #clone, #eql?, #hash, inherited, #inspect
Constructor Details
#initialize(lhs, rhs) ⇒ IsDistinctFrom
Returns a new instance of IsDistinctFrom.
107 108 109 110 |
# File 'lib/sequel/extensions/is_distinct_from.rb', line 107 def initialize(lhs, rhs) @lhs = lhs @rhs = rhs end |
Instance Attribute Details
#lhs ⇒ Object (readonly)
The left hand side of the IS DISTINCT FROM expression.
102 103 104 |
# File 'lib/sequel/extensions/is_distinct_from.rb', line 102 def lhs @lhs end |
#rhs ⇒ Object (readonly)
The right hand side of the IS DISTINCT FROM expression.
105 106 107 |
# File 'lib/sequel/extensions/is_distinct_from.rb', line 105 def rhs @rhs end |