-
- Downloads
Un-break jsonb support in django newer than 3.1.1
Django 3.1.1 intentionally broke jsonb support for all queries not going through the ORM. And of course we have those, since trying to write some of these things in the ORM is if not impossible then at least a recipie for insanity and unreadable code. Fix is to specifically turn the jsonb support back on for the queries we run outside the ORM. This needs to doubly-unwrap debug cursors if we're in debug mode, but at least it appears to work on both 2.2 and 3.2 in the same way.