Posted by fundawang on December 20, 2006 at 6:33am
Jump to:
| Project: | Drupal core |
| Version: | 7.x-dev |
| Component: | other |
| Category: | feature request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed (duplicate) |
Issue Summary
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))'...
Comments
#1
features go against 6.x but my intentions are to replace count_query with a subselect. stay tuned.
#2
fixed with dbtng?
#3
duplicate of #423888: Use subqueries for ->countQuery(), at least for MySQL
(Sorry for pinging the participants, I'm trying to clean up a few old
issues)