Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

With(empty_qs) throws Error #64

Open
ford-carta opened this issue Oct 21, 2022 · 1 comment
Open

With(empty_qs) throws Error #64

ford-carta opened this issue Oct 21, 2022 · 1 comment

Comments

@ford-carta
Copy link

Got this error when I had an empty query set in a With clause.

AttributeError: 'CTEQueryCompiler' object has no attribute 'col_count'

@hstanev
Copy link

hstanev commented Nov 23, 2023

I managed to work around this by changing my queryset from
MyModel.objects.filter(pk__in=[])
to
MyModel.objects.filter(pk=None)

It appears that what triggers the problem is your queryset becoming a queryset.none(), so I chose to simply prevent that by changing the filter with something that would otherwise yield the same empty result from the queryset.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants