aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/string_join.rb
blob: b24e91b6b89c866c15b96bc1b74ec158e74ef56a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module Arel
  module Nodes
    class StringJoin < Arel::Nodes::Join
      undef :constraint

      def initialize left, right, on = nil
        super
      end
    end
  end
end