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

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

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

      def nil?
        value.nil?
      end
    end
  end
end