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