1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activerecord/lib/arel/nodes/equality.rb

12 lines
216 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2018-02-24 01:45:50 -05:00
2018-02-24 02:41:47 -05:00
module Arel # :nodoc: all
2010-08-12 18:22:26 -04:00
module Nodes
2010-08-16 20:26:12 -04:00
class Equality < Arel::Nodes::Binary
2010-09-06 20:39:09 -04:00
def operator; :== end
alias :operand1 :left
alias :operand2 :right
2010-08-12 18:22:26 -04:00
end
end
end