We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Assuming column "b" is the first column in your column family's clustering key; if you make a query like:
model.objects.filter(a='foo').order_by('-b')[:3]
It seems that the results don't honor the order_by since they come back in the original order as stored in the database and not reversed.
The text was updated successfully, but these errors were encountered:
order_by works correctly if you do not slice the queryset.
Sorry, something went wrong.
No branches or pull requests
Assuming column "b" is the first column in your column family's clustering key;
if you make a query like:
model.objects.filter(a='foo').order_by('-b')[:3]
It seems that the results don't honor the order_by since they come back in the original order as stored in the database and not reversed.
The text was updated successfully, but these errors were encountered: