Class: Sequel::SQL::BooleanExpression
- Inherits:
-
Object
- Object
- Sequel::SQL::BooleanExpression
- Defined in:
- lib/sequel_opal_runtime_patches.rb
Class Method Summary collapse
Class Method Details
.__homura_orig_from_value_pair ⇒ Object
144 |
# File 'lib/sequel_opal_runtime_patches.rb', line 144 alias_method :__homura_orig_from_value_pair, :from_value_pair |
.from_value_pair(l, r) ⇒ Object
146 147 148 149 150 151 152 153 |
# File 'lib/sequel_opal_runtime_patches.rb', line 146 def from_value_pair(l, r) if r.is_a?(::String) && !r.is_a?(::Sequel::LiteralString) && !r.is_a?(::Sequel::SQL::Blob) r = ::HomuraSqlStringLiteral.new(r) end __homura_orig_from_value_pair(l, r) end |