﻿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
11599	Field exceptions are silently passed when slicing geoqueryset	Jani Tiainen	nobody	"When using GeoDjango exception happens when populating model from database using get().

{{{
x = MyModel.objects.get(pk=1)
}}}

Above works as expected, correct exception is thrown

But:

{{{
qs = MyModel.objects.filter(pk=1)
qs[0] 
}}}

Now IndexError exception is thrown instead of exception that was expected (in my particular case, there was invalid geometry).

Returned list from queryset itself is empty, no error thrown at all."	Bug	closed	Database layer (models, ORM)	dev	Normal	fixed			Accepted	0	0	0	0	0	0
