Class: Arel::Predicates::GreaterThan

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



149
150
151
# File 'lib/arel/algebra/predicates.rb', line 149

def complement
  LessThanOrEqualTo.new(operand1, operand2)
end

#operatorObject



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

def operator; :> end

#predicate_sqlObject



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

def predicate_sql; '>' end