Norbert wrote:
> This is the culprit:
> 
> tags/fields.py
> 48: ids = [id for id in data if type(id) == int]
> 49: strs = [id for id in data if type(id) != int]
> 50: initial_tags = list(self.model.objects.filter(id__in=ids))
> 
> If ids is blank, the sql is 'IN ()' which is illegal in MySQL (5.0.24a).

Ouch... Thanks, I'll fix it shortly.

> The reason I'm posting this on django-users instead of just reporting 
> the bug to Ivan directly, is because I'm curious whether this is 
> "correct" behavior. If 'IN ()' is legal in postgres (could someone 
> verify one way or the other?) than maybe this should be ticketed as a 
> django-mysql bug and fixed accordingly?

There was a time when everyone agreed that it's intended behavior. 
Because 'empty list' may mean opposite things in different context:

- __in= is a filter, so empty filter means 'show everything'
- __in= is the stuff that I want so if empty don't show anything

But apparently something has changed and there is a ticket dealing with 
it: http://code.djangoproject.com/ticket/2473

I, myself, think that either behavior is correct but has to be 
explicitly documented.

> PS. Thanks Ivan for the app! :-)

:-)

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to