﻿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
5012	Allow QuerySets to handle offsets without limits and negative slicing	Chris Beaven	nobody	"This patch allows `QuerySet`s to:

1. use negative slicing (with the caveat that they require explicit ordering) and

2. use offsets without limits (eg `Entries.objects.all()[5:]`)

So really it's two separate features, but negative slicing was the feature I was trying to implement and to make it work in a logical way it required fixing offsets without limits.

Feature 2 requires a change to the db backends. All except Oracle (because the comment in `django.db.backends.oracle.base::get_limit_offset_sql` says it's handled in `./query.py` but that file doesn't exist) and MS-SQL (because it never worked there to begin with)."		closed	Database layer (models, ORM)	dev		fixed	qs-rf-fixed	cgrady@… michael@…	Accepted	1	0	0	0	0	0
