With cx_Oracle 5, though, it is possible to use a much better approach, on
a per-column (rather than per-row) basis, selecting the right output type
when there is enough information to do so, and making most of the
decisions once-per-query instead of once-per-row.
An original patch for this was written by Ian Kelly; I improved it and
made a pull-request in the stretch towards 1.5, but there was no ticket
for it and so it was never merged. I hope we can finally merge it into
1.6.
There was a little saga of discussions around this (mostly Anssi, Ian and
myself, https://groups.google.com/d/topic/django-
developers/4BNkJyGez9A/discussion). Some other issues are also mentioned
there. But this is the main one.
So now there is a ticket. Things changed, and the pull-request needed
updating. The new one is at https://github.com/django/django/pull/1071.
--
Ticket URL: <https://code.djangoproject.com/ticket/20414>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* needs_better_patch: => 0
* needs_docs: => 0
* needs_tests: => 0
* stage: Unreviewed => Accepted
--
Ticket URL: <https://code.djangoproject.com/ticket/20414#comment:1>
* needs_better_patch: 0 => 1
Comment:
Newest pull request appears to be
[https://github.com/django/django/pull/1279 here]. It at least needs to be
updated to reflect the fact that it won't be added in 1.6 as currently
documented.
--
Ticket URL: <https://code.djangoproject.com/ticket/20414#comment:2>
Comment (by shai):
Well, I seemed to have botched that branch -- I need to fix it. Until
then, I'll close the PR.
Anyway, later tests I ran showed this to be a lot less promising than I
had thought. The reason is that cx_Oracle, internally, does this return-
number-as-string-and-transform-to-Python-int dance whenever the database
column can hold more than 9 digits; Django's Oracle backend uses
`number(11)` for ints. I'll revisit this when I finally get to meddling
with cx_Oracle internals (this is needed mostly for Python 3 support,
which is currently quite completely broken).
--
Ticket URL: <https://code.djangoproject.com/ticket/20414#comment:3>
Comment (by felixxm):
I think it's already fixed in
https://github.com/django/django/commit/e06cab260049bb58eafdc4f60ac50a5f3759c38c.
--
Ticket URL: <https://code.djangoproject.com/ticket/20414#comment:4>
* cc: felixxm (added)
--
Ticket URL: <https://code.djangoproject.com/ticket/20414#comment:5>
* status: new => closed
* version: master => 2.0
* resolution: => fixed
Comment:
Replying to [comment:4 felixxm]:
> I think it's already fixed in
https://github.com/django/django/commit/e06cab260049bb58eafdc4f60ac50a5f3759c38c.
Well, it needed https://github.com/oracle/python-
cx_Oracle/commit/b1d1a93a8749eb40e9a8f76d94b6b2434c84399b first, but yes,
since both are in, I believe the issue should be closed. If there's any
more issues with integers performance on Oracle, they're unrelated to
this.
--
Ticket URL: <https://code.djangoproject.com/ticket/20414#comment:6>