Hacker News new | ask | show | jobs
by jsmeaton 1782 days ago
Casually building a django db backend as an acceptance test. Nice work and great write up!

I had déjà vu reading the section on bind parameters in aggregate queries. The oracle backend had a similar issue that was fixed/hacked by comparing values and grouping them into named parameters. https://code.djangoproject.com/ticket/27632

1 comments

This is interesting, thank you for pointing it out. Worth looking if the problems can be fixed the same way in both the adapter (and probably everything else using server-side binding).