summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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):