From eca6f91be2832208703d91e541e6f0b0addabfe0 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Tue, 28 Mar 2017 09:41:45 -0400 Subject: [PATCH] Updated cx_Oracle arraysize comment. --- django/db/backends/oracle/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/backends/oracle/base.py b/django/db/backends/oracle/base.py index 55b95b7f3c..8572aeaae3 100644 --- a/django/db/backends/oracle/base.py +++ b/django/db/backends/oracle/base.py @@ -387,7 +387,7 @@ class FormatStylePlaceholderCursor: self.cursor = connection.cursor() # Necessary to retrieve decimal values without rounding error. self.cursor.numbersAsStrings = True - # Default arraysize of 1 is highly sub-optimal. + # The default for cx_Oracle < 5.3 is 50. self.cursor.arraysize = 100 def _format_params(self, params):