# File lib/arel/algebra/predicates.rb, line 129 129: def ==(other) 130: super && @operand2 == other.operand2 131: end
# File lib/arel/algebra/predicates.rb, line 133 133: def bind(relation) 134: self.class.new(operand1.find_correlate_in(relation), operand2.find_correlate_in(relation)) 135: end
# File lib/arel/algebra/predicates.rb, line 137 137: def eval(row) 138: operand1.eval(row).send(operator, operand2.eval(row)) 139: end
# File lib/arel/algebra/predicates.rb, line 141 141: def to_sql(formatter = nil) 142: "#{operand1.to_sql} #{predicate_sql} #{operand1.format(operand2)}" 143: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.