﻿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
23626	Change coding style for sql, params return lines	Marc Tamlyn	Anna Warzecha	"The current style can be quite confusing: {{{return '%s @> %s' % (lhs, rhs), params}}}

This is much clearer:
{{{
sql =  '{} @> {}'.format(lhs, rhs)
params = lhs_params + rhs_params
return sql, params
}}}

We should do this everywhere in the ORM or not at all.

(Originally brought up by Aymeric on https://github.com/django/django/pull/3219)"	Cleanup/optimization	closed	Database layer (models, ORM)	dev	Normal	wontfix	afraid-to-commit	amizya@…	Accepted	0	0	0	0	1	0
