You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-dev@db.apache.org by Myrna van Lunteren <m....@gmail.com> on 2011/08/31 19:32:44 UTC

query for backports to 10.8 missing some bugs...

Hi,


I've backported most of the issues for which I thought a backport was
reasonable and marked others with the reject_backport label.
I've been looking at this list based on a query Kathey set up in JIRA
(also referenced off the DerbyTenEightTwoRelease wiki page):
https://issues.apache.org/jira/sr/jira.issueviews:searchrequest-printable/temp/SearchRequest.html?jqlQuery=project=derby+and+type+not+in+%28Improvement,%22New+Feature%22%29+and+fixVersion+=+%2210.9.0.0%22++and+fixVersion+not+in+%28%2210.8.1.2%22,%2210.8.1.6%22%29+and+resolution+=+Fixed+AND+labels+not+in+%28derby_backport_reject_10_8%29&tempMax=1000]

But I've been also somewhat track of the actual commits, and for the
second time I noticed a bug which as far as I can see should've shown
up on the list, but hasn't: DERBY-5396.

Can anyone figure out why it doesn't match the query? I've stared at
it but fail to see.

(for the other bug I backported or rejected the fix, so it's not a
good test case for this anymore)

Thx,
Myrna

Re: query for backports to 10.8 missing some bugs...

Posted by Kathey Marsden <km...@sbcglobal.net>.
On 8/31/2011 10:32 AM, Myrna van Lunteren wrote:
> But I've been also somewhat track of the actual commits, and for the
> second time I noticed a bug which as far as I can see should've shown
> up on the list, but hasn't: DERBY-5396.
>
> Can anyone figure out why it doesn't match the query? I've stared at
> it but fail to see.
Hi Myrna,

I think I located the problem with the query.  It needs to include the 
possibility that labels is null. It is included with this query.
project=derby and type not in (Improvement,"New Feature") and fixVersion 
= "10.9.0.0"  and fixVersion not in ("10.8.1.2","10.8.1.6")  AND  
resolution = Fixed AND (labels = null or   labels not in 
(derby_backport_reject_10_8))


I'll changed it on the wiki page.  That brings us from 12 to 21 issues.  
Folks might want to take another look at this list.

https://issues.apache.org/jira/sr/jira.issueviews:searchrequest-printable/temp/SearchRequest.html?jqlQuery=project%3Dderby+and+type+not+in+%28Improvement%2C%22New+Feature%22%29+and+fixVersion+%3D+%2210.9.0.0%22++and+fixVersion+not+in+%28%2210.8.1.2%22%2C%2210.8.1.6%22%29++AND++resolution+%3D+Fixed+AND+%28labels+%3D+null+or+++labels+not+in+%28derby_backport_reject_10_8%29%29&tempMax=1000

Thank you Myrna for catching this bug and sorry for the inconvenience.

Kathey