Method: Sequel::SQL::Builders#or
- Defined in:
- lib/sequel/sql.rb
#or(arg) ⇒ Object
635 636 637 638 639 640 641 |
# File 'lib/sequel/sql.rb', line 635 def or(arg) if condition_specifier?(arg) SQL::BooleanExpression.from_value_pairs(arg, :OR, false) else raise Error, 'must pass a conditions specifier to Sequel.or' end end |