Hi,
I am trying to query the list of 'open OR merged' patches for a particular user.
Looks like I have to specify the "owner:self" every time before the "status:<value>".
Am I missing something or is this the right way to go ?
ssh -p 29418
review.example.com gerrit query --format=text owner:self status:open OR status:merged project:tools limit:10
does not give what I want whereas the below query does it:
ssh -p 29418
review.example.com gerrit query --format=text owner:self status:open OR
owner:self status:merged project:tools limit:10