On Sat, Nov 21, 2009 at 1:36 AM, Alex Gaynor <[email protected]> wrote:
> On Fri, Nov 20, 2009 at 3:56 PM, Karen Tracey <[email protected]> wrote: > >> Just running the Oracle tests is enough for now. I've fixed the error > >> you spotted with the stray import left over and pushed that to github. > > > > I get 6 failures and 26 errors but I do not know if any of them have > > anything to do with multidb. The output is here: > > > > http://pastebin.com/m2c763672 > > > > By contrast on trunk I get 7 failures and 26 errors: > > > > http://pastebin.com/mf7c57a6 > > > > The unable to create INITIAL extent errors are new -- I've not seen them > > before, but I am getting some on trunk as well as multidb (though more on > > multidb). I get the impression it may mean my install has some limits on > > how big things can grow, and tests are now exceeding those limits. Not > > sure, and I don't have time to spend on trying to figure it out right > now. > > > > Nor do I have time to see which failure goes away with multidb, sorry -- > so > > I figured I'd just post out the results and you can take a look if you > think > > it would be useful. > > > > Karen > > > > -- > > > > You received this message because you are subscribed to the Google Groups > > "Django developers" group. > > To post to this group, send email to [email protected]. > > To unsubscribe from this group, send email to > > [email protected]<django-developers%[email protected]> > . > > For more options, visit this group at > > http://groups.google.com/group/django-developers?hl=. > > > > Thanks! > > Unfortunately i have basically no idea what any of those Oracle bugs > mean. However, the few non-frightening errors I saw all also appeared > on trunk, so I guess my refactor basically didn't break anything. > > Alex > > -- > "I disapprove of what you say, but I will defend to the death your > right to say it." -- Voltaire > "The people's good is the highest law." -- Cicero > "Code can always be simpler than you think, but never as simple as you > want" -- Me > > Initial extent errors happens because datafile allocated for temporary tablespace is full. It's hardcoded in django/db/backends/oracle/creation.py:L159,L163 (in trunk) to be 100M(bytes) which apparently is not enough anymore. Too bad that it's so late that I don't have time to test how much space tests actually needs now but it's definitely more than 100M. -- Jani Tiainen -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-developers?hl=en.
