aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/arel/nodes/equality.rb
blob: 2aa85a977e2d1450afbc79c44c97348c0316885c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Arel # :nodoc: all
  module Nodes
    class Equality < Arel::Nodes::Binary
      def operator; :== end
      alias :operand1 :left
      alias :operand2 :right
    end
  end
end