﻿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
27251	Cannot combine multiple SearchQuery objects	Jaap Roes		"According to the docs:

    [https://docs.djangoproject.com/en/1.10/ref/contrib/postgres/search/#searchquery SearchQuery]  terms can be combined logically to provide more flexibility

This works for two SearchQuery objects

{{{
>>> SearchQuery('foo') | SearchQuery('bar')
<CombinedExpression: SearchQuery(foo) || SearchQuery(bar)>
}}}

But any more than that and an exception is raised:

{{{
>>> SearchQuery('foo') | SearchQuery('bar') | SearchQuery('baz')
NotImplementedError: Use .bitand() and .bitor() for bitwise logical operations.
}}}"	Bug	closed	contrib.postgres	1.10	Normal	duplicate			Unreviewed	0	0	0	0	0	0
