You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems the views without queries take the most time because it's sorting on a nullable field/aggregation which in postgresql come first when sorting decending.
I don't think django orm supports the "NULLS FIRST" / "NULLS LAST" options, so the nulls should probably be filtered as they are irrelevant for the specific part of the dashboard.
The text was updated successfully, but these errors were encountered:
Database: Postgresql.
It seems the views without queries take the most time because it's sorting on a nullable field/aggregation which in postgresql come first when sorting decending.
I don't think django orm supports the "NULLS FIRST" / "NULLS LAST" options, so the nulls should probably be filtered as they are irrelevant for the specific part of the dashboard.
The text was updated successfully, but these errors were encountered: