summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-03-28 09:41:45 -0400
committerTim Graham <timograham@gmail.com>2017-03-28 09:41:45 -0400
commiteca6f91be2832208703d91e541e6f0b0addabfe0 (patch)
treeb8981bca49f001cd699c54a28883f46ee700918d
parent78619bcb0a7d0a3f1e6d9ad00abef701d6656639 (diff)
Updated cx_Oracle arraysize comment.
-rw-r--r--django/db/backends/oracle/base.py2
1 files changed, 1 insertions, 1 deletions
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):