We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
bind_block
1 parent f503e01 commit 9d71f41Copy full SHA for 9d71f41
lib/arel/visitors/oracle_common.rb
@@ -3,6 +3,12 @@
3
module Arel # :nodoc: all
4
module Visitors
5
module OracleCommon
6
+
7
+ BIND_BLOCK = proc { |i| ":a#{i}" }
8
+ private_constant :BIND_BLOCK
9
10
+ def bind_block; BIND_BLOCK; end
11
12
private
13
# Oracle can't compare CLOB columns with standard SQL operators for comparison.
14
# We need to replace standard equality for text/binary columns to use DBMS_LOB.COMPARE function.
0 commit comments