aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/bind_param.rb
blob: 3a4aedc4baf332188335632297e15b6dcc063323 (plain) (blame)
1
2
3
4
5
6
7
8
9
module Arel
  module Nodes
    class BindParam < Node
      def ==(other)
        other.is_a?(BindParam)
      end
    end
  end
end