10 lines
163 B
Ruby
10 lines
163 B
Ruby
# frozen_string_literal: true
|
|
module Arel
|
|
module Nodes
|
|
class BindParam < Node
|
|
def ==(other)
|
|
other.is_a?(BindParam)
|
|
end
|
|
end
|
|
end
|
|
end
|