aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/arel/visitors/to_sql.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/arel/visitors/to_sql.rb b/lib/arel/visitors/to_sql.rb
index 9830e559d5..4eae5a9ae5 100644
--- a/lib/arel/visitors/to_sql.rb
+++ b/lib/arel/visitors/to_sql.rb
@@ -368,10 +368,6 @@ eowarn
o.empty? ? 'NULL' : o.map { |x| visit x }.join(', ')
end
- def visit_Array o
- o.empty? ? 'NULL' : o.map { |x| visit x }.join(', ')
- end
-
def quote value, column = nil
@connection.quote value, column
end