user3599803
user3599803

Reputation: 7044

django SET SQL_AUTO_IS_NULL = 0

Using Mysql, django-debug-toolbar, I see these useless(?) queries:

SET SQL_AUTO_IS_NULL = 0
Duplicated 2 times. 

SET SQL_AUTO_IS_NULL = 0
Duplicated 2 times.

This query is repeated 4 times. I couldn't find enough info on that.
How to remove it?
Why it is repeated?

Upvotes: 2

Views: 2174

Answers (1)

Barmar
Barmar

Reputation: 782785

According to this ticket this will be fixed in Django 1.10, which isn't yet released.

Upvotes: 3

Related Questions