[Testrunner-users] RE: [testrunner - Help] Adding Bugs to Test Plan
Brought to you by:
efuentetaja,
gregaryh
|
From: eduardo f. <edu...@ho...> - 2004-07-08 21:01:06
|
It is a bug, sorry about that,
If you are using Bugzilla 2.16.*, to fix it: edit tr_buglist_to_plan.cgi,
replace
line 158:
SendSQL("SELECT product_id from bugs where bug_id=$id");
by:
SendSQL("SELECT po.id from bugs b, products po where b.bug_id=$id and
b.product=po.product");
and
line 260:
SendSQL( "SELECT component_id, short_desc from bugs where bug_id=$id" );
by:
SendSQL("SELECT co.id, b.short_desc from bugs b, components co where
b.bug_id=$id and co.value=b.component");
That should do it. I'll fix it more properly on the next version.
Thanks for reporting this problem, I didn't see it,
Ed
>From: "SourceForge.net" <no...@so...>
>To: no...@so...
>Subject: [testrunner - Help] Adding Bugs to Test Plan
>Date: Tue, 06 Jul 2004 15:44:58 -0700
>
>
>Read and respond to this message at:
>https://sourceforge.net/forum/message.php?msg_id=2651761
>By: pyarish
>
>Hello!
>
>I am new to test runner and trying it out for one of our projects. We have
>bugzilla 2.16.5. My problem is when I attempt to add bugs via the "Add
>Bugs
>to Test Plan" link which is on bugzilla query results list, I get the
>following
>error:
>"Adding list of bugs to test plan as test cases
>
>
>You have choosen to add the following bugs to test plan as test cases:
>
>970
>Software error:
>SELECT product_id from bugs where bug_id=970: Unknown column 'product_id'
>in
>'field list' at globals.pl line 276."
>
>Our network guy has not been able to investigate, so I'm asking if anyone
>can
>tell me what the problem is.
>
>Thanks in advance,
>Priscilla
>
>
>______________________________________________________________________
>You are receiving this email because you elected to monitor this forum.
>To stop monitoring this forum, login to SourceForge.net and visit:
>https://sourceforge.net/forum/unmonitor.php?forum_id=331476
_________________________________________________________________
Express yourself instantly with MSN Messenger! Download today - it's FREE!
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/
|