aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/bind_param.rb
blob: d55f4c1c8e01b6c48f59a8fee54b125c1b6b0871 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true
module Arel
  module Nodes
    class BindParam < Node
      attr_reader :value

      def initialize(value)
        @value = value
        super()
      end

      def ==(other)
        other.is_a?(BindParam) &&
          value == other.value
      end
    end
  end
end