﻿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
32505	Allow queryset.extra() to specify OR operation	James Lin	nobody	"Currently in django Query class, it is using `AND`  as default operation


{{{
def add_extra(self, select, select_params, where, params, tables, order_by):
    ...
    if where or params:
        self.where.add(ExtraWhere(where, params), AND)
    ...
}}}



We should be able to pass op argument so I can use OR operation"	New feature	new	Uncategorized	2.2	Normal		extra, or		Unreviewed	0	0	0	0	0	0
