Karen,

Can you try changing line 230 of django.db.models.sql.query from:
                    row = row[:aggregate_start] + tuple(
to
                    row = tuple(row[:aggregate_start]) + tuple(

That should clear up most of the errors and seems to be the result of
Oracle returning a list instead of a tuple.

Alex

On Jan 5, 9:16 am, "Karen Tracey" <kmtra...@gmail.com> wrote:
> On Mon, Jan 5, 2009 at 9:11 AM, Russell Keith-Magee
> <freakboy3...@gmail.com>wrote:
>
> > [snip]
> > In particular, I need feedback on the following:
>
> >  - Oracle support. I don't have any access to Oracle for testing
> > purposes, so I'm relying on the community (esp the Oracle backend
> > maintainers) to help me out here.
>
> I don't know Oracle but I do have a machine set up with it for testing
> purposes.  In case it's of any use, here are the errors from the aggregation
> test when run with Oracle:
>
> http://dpaste.com/105594/
>
> and the aggregation_regress errors:
>
> http://dpaste.com/105596/
>
> Some of them may need real Oracle knowledge to fix, but some may be things
> fixable just by seeing what Oracle is returning differently.
>
>
>
> >  - Gnarly test cases that break things.
>
> >  - The documentation. Any suggestions on clarifications that are
> > required, or places where mine English isn't gooderer enuf.
>
> I'll play around with these, too, but that'll take a little longer than just
> running the tests on Oracle did.
>
> Cheers,
> Karen
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django developers" group.
To post to this group, send email to django-developers@googlegroups.com
To unsubscribe from this group, send email to 
django-developers+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to