Re: [sqlalchemy] Updating sqlalchemy_django_query to sqlalchemy 1.4

2021-05-20 Thread Mike Bayer
_compile_state() is an expensive call so you'd want to avoid doing that casually, that's why filter_by_zero is there. On Thu, May 20, 2021, at 4:35 AM, piotr maliński wrote: > Managed to get this working: >

Re: [sqlalchemy] Updating sqlalchemy_django_query to sqlalchemy 1.4

2021-05-20 Thread piotr maliński
Managed to get this working: https://github.com/riklaunim/flask-jsonapi/commit/6fab64bb0f31e2e3f3e1ed82269fd26464f00aba I used *self._compile_state()._joinpoint_zero()* while *self._filter_by_zero() *also seems to be working. czw., 20 maj 2021 o 01:41 Mike Bayer napisał(a): > the