Skip to content

Commit eca6f91

Browse files
committed
Updated cx_Oracle arraysize comment.
1 parent 78619bc commit eca6f91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

django/db/backends/oracle/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ def __init__(self, connection):
387387
self.cursor = connection.cursor()
388388
# Necessary to retrieve decimal values without rounding error.
389389
self.cursor.numbersAsStrings = True
390-
# Default arraysize of 1 is highly sub-optimal.
390+
# The default for cx_Oracle < 5.3 is 50.
391391
self.cursor.arraysize = 100
392392

393393
def _format_params(self, params):

0 commit comments

Comments
 (0)