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


                                        


                                      


       
# frozen_string_literal: true
module Arel
  module Nodes
    class StringJoin < Arel::Nodes::Join
      def initialize left, right = nil
        super
      end
    end
  end
end