Class: Arel::Predicates::GreaterThanOrEqualTo

Inherits:
Binary show all
Defined in:
lib/arel/algebra/predicates.rb,
lib/arel/engines/sql/predicates.rb,
lib/arel/engines/memory/predicates.rb

Instance Method Summary collapse

Methods inherited from Binary

#==, #bind, #eval, #to_sql

Methods inherited from Predicate

#and, #not, #or

Instance Method Details

#complementObject



143
144
145
# File 'lib/arel/algebra/predicates.rb', line 143

def complement
  LessThan.new(operand1, operand2)
end

#operatorObject



62
# File 'lib/arel/engines/memory/predicates.rb', line 62

def operator; :>= end

#predicate_sqlObject



62
# File 'lib/arel/engines/sql/predicates.rb', line 62

def predicate_sql; '>=' end