aboutsummaryrefslogblamecommitdiffstats
path: root/lib/arel/nodes/bind_param.rb
blob: 9e297831cd3a8daa5e8e3ddb6ad61a535cef3a7a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                             


                          


                              


       
# frozen_string_literal: true
module Arel
  module Nodes
    class BindParam < Node
      def ==(other)
        other.is_a?(BindParam)
      end
    end
  end
end