﻿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
11235	minor error in queryset documentation	anonymous	nobody	"There is a minor error in the second example of using the 'select' parameter to the 'extra' queryset method at
http://docs.djangoproject.com/en/dev/ref/models/querysets/#extra-select-none-where-none-params-none-tables-none-order-by-none-select-params-none

The second example's ""resulting SQL"" is missing ""AS entry_count"" for its subquery.

It should read as follows:

SELECT blog_blog.*, (SELECT COUNT(*) FROM blog_entry WHERE blog_entry.blog_id = blog_blog.id) AS entry_count
FROM blog_blog;

Currently ""AS entry_count"" is missing.  (The example is intended to create an entry_count attribute).
"		closed	Documentation	dev		fixed			Ready for checkin	1	0	0	0	0	0
