better count sql statement on SELECT DISTINCT involked
fundawang - December 20, 2006 - 06:33
| Project: | Drupal |
| Version: | 7.x-dev |
| Component: | other |
| Category: | feature request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Jump to:
Description
If I involke pager_query() with 'SELECT DISTINCT u.uid FROM {users}', it will be replaced by 'SELECT count(*) FROM {users}' when counting users. Of course, it is just an example sql statement here. But the counting statement would be better be replaced to 'SELECT COUNT(DISTINCT(u.uid)) FROM {users}'.
Currently, the only way getting the wanted result is to passing extra $count parameters. But it would be better pager_query could do as following:
If 'SELECT DISTINCT' was found
$count_query = 'SELECT COUNT(DISTINCT(first_field))'...

#1
features go against 6.x but my intentions are to replace count_query with a subselect. stay tuned.
#2
fixed with dbtng?