Make fast query with "count(*)" instead selecting all data

master
Alexei 2013-11-06 13:55:40 +03:00
parent e7da934c2e
commit 6195cd7390
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
def get_is_sortable(objects): def get_is_sortable(objects):
if len(objects) > 1: if objects.count() > 1:
return True return True
return False return False