Re: A Django Async Roadmap

2019-06-25 Thread Andrew Godwin
The DEP is drafted and in the DEPs repo, and awaiting approval by the freshly-elected Technical Board once I submit it. In the meantime, we landed the ASGI patch, as well. Andrew On Tue, Jun 25, 2019 at 3:30 PM Chris Barry wrote: > Hey all, > > Just wondering what the future of this is looking

Re: A Django Async Roadmap

2019-06-25 Thread Chris Barry
Hey all, Just wondering what the future of this is looking like? CB On Friday, 12 April 2019 07:33:35 UTC+1, Shaggy wrote: > > and how it is going ? > is there some interest from django devs? > > On Monday, 4 June 2018 15:18:23 UTC+2, Andrew Godwin wrote: >> >> Hello everyone, >> >> For a while

Re: When filtring on a subquery expressions, the subquery appears twice in the SELECT and the WHERE

2019-06-25 Thread Haki Benita
Thanks for the quick reply Simon. I'm currently unable to test the [0] commit for this specific use case because of some compat issues in my project. I'm also not sure how the solution can work in SQL. The PR to allow using Exists directly in filter sounds like it can solve the problem for

Re: When filtring on a subquery expressions, the subquery appears twice in the SELECT and the WHERE

2019-06-25 Thread charettes
Hello Haki, This should probably have been posted to the django-users list given this one is for the development of Django itself but since there has been some recent and ungoing development in this area I'll reply here. First there has been work to reuse annotation aliases that is in the

When filtring on a subquery expressions, the subquery appears twice in the SELECT and the WHERE

2019-06-25 Thread Haki Benita
Hey, I'm trying to filter on a subquery expressions using Exists and I ran into a weird issue. According to the docs , to filter on subquery you first need to annotate it, and than filter on it.

Re: [Feature Request][Model, ORM] Disabling a field before removal to support continuous delivery

2019-06-25 Thread Matthieu Rudelle
> > How does the "safe" field of migrations work with other migrations related > commands, such as squashmigrations? > Squashmigrations typically targets and produces migrations that are old enough to be assumed safe. > You can check out our repository. We've been pretty happy with how