aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/arel/collectors/sql_string.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/lib/arel/collectors/sql_string.rb')
-rw-r--r--activerecord/lib/arel/collectors/sql_string.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/activerecord/lib/arel/collectors/sql_string.rb b/activerecord/lib/arel/collectors/sql_string.rb
new file mode 100644
index 0000000000..c293a89a74
--- /dev/null
+++ b/activerecord/lib/arel/collectors/sql_string.rb
@@ -0,0 +1,24 @@
+# frozen_string_literal: true
+
+require "arel/collectors/plain_string"
+
+module Arel # :nodoc: all
+ module Collectors
+ class SQLString < PlainString
+ def initialize(*)
+ super
+ @bind_index = 1
+ end
+
+ def add_bind(bind)
+ self << yield(@bind_index)
+ @bind_index += 1
+ self
+ end
+
+ def compile(bvs)
+ value
+ end
+ end
+ end
+end