Issuing a Django 1.3 ORM query using the 'raw' query method raises an exception sometimes. I'm not sure what condition causes it to raise an exception, and I can't reliably reproduce it. (Although it happens in production pretty frequently).
The line of code:
foos = list(Foo.objects.raw("""
select * from foo
where a = %s
and b > %s
FOR UPDATE""", (foo_id, b)))
The traceback in Django code:
Traceback (most recent call last):
File "django/db/models/query.py", line 1328, in __iter__
for pos, column in enumerate(self.columns):
File "django/db/models/query.py", line 1402, in columns
self._columns = self.query.get_columns()
File "django/db/models/sql/query.py", line 62, in get_columns
for column_meta in self.cursor.description]
TypeError: 'NoneType' object is not iterable
The root cause is that the query completes without exception, but cursor.description is None. I couldn't find any information on what causes that to happen.
I've tested the case where the query returns a result, and the case where it doesn't, without seeing any problems. I've verified in particular that cursor.description contains the column information even when no rows are returned.i
My next debugging step is to patch our production Django to dump more information when this error occurs. (Which is pretty unfortunate)
Any ideas?