aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/arel/nodes/string_join.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/lib/arel/nodes/string_join.rb')
-rw-r--r--activerecord/lib/arel/nodes/string_join.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/activerecord/lib/arel/nodes/string_join.rb b/activerecord/lib/arel/nodes/string_join.rb
new file mode 100644
index 0000000000..86027fcab7
--- /dev/null
+++ b/activerecord/lib/arel/nodes/string_join.rb
@@ -0,0 +1,11 @@
+# frozen_string_literal: true
+
+module Arel # :nodoc: all
+ module Nodes
+ class StringJoin < Arel::Nodes::Join
+ def initialize(left, right = nil)
+ super
+ end
+ end
+ end
+end