﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
2939	.values(*fields).distinct().count() returns the wrong value	anonymous	nobody	">>> Post.objects.values('author')
[{'author': 1}, {'author': 2}, {'author': 1}, {'author': 2}, {'author': 1}]
>>> Post.objects.values('author').distinct()
[{'author': 1}, {'author': 2}]
>>> Post.objects.values('author').distinct().count()
5
>>> len(Post.objects.values('author').distinct())                                                                       
2"	defect	closed	Database layer (models, ORM)		normal	fixed	qs-rf-fixed	andrew@…	Accepted	1	0	0	1	0	0
