aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/equality.rb
blob: f29344e5806dbeb93d113c8f7154f6597adc5c00 (plain) (blame)
1
2
3
4
5
6
7
8
9
module Arel
  module Nodes
    class Equality < Arel::Nodes::Binary
      def operator; :== end
      alias :operand1 :left
      alias :operand2 :right
    end
  end
end