View Issue Details

IDProjectCategoryView StatusLast Update
0000638HopperMySQLpublic2013-06-03 16:49
ReporterMartijn Tonies Assigned ToMartijn Tonies  
PrioritynormalSeveritymajorReproducibilityalways
Status closedResolutionfixed 
Product Version1.2.0 
Fixed in Version1.3.0 
Summary0000638: Debugger error with assigning values to output parameters using Trace Into
DescriptionWhen I trace into p_double_it from p_call_double, the value of the_double
(8) does not get passed to d. When I run it full speed from a query window:

call p_call_double;

The row is inserted properly.
Steps To ReproduceCREATE PROCEDURE p_double_it(the_number Integer(10), OUT the_double
Integer(10))
  NO SQL
begin
  SET the_double = 2 * the_number;
end
/

CREATE PROCEDURE p_call_double()
  NO SQL
begin
  DECLARE d Integer(10);
  
  CALL p_double_it(4, d);
  insert into tbl_result
  values (4, d);
end
/
TagsNo tags attached.
DBMS Version

Activities

There are no notes attached to this issue.

Issue History

Date Modified Username Field Change
2013-05-10 09:06 Martijn Tonies New Issue
2013-05-10 09:07 Martijn Tonies Status new => confirmed
2013-05-13 15:25 Martijn Tonies Status confirmed => resolved
2013-05-13 15:25 Martijn Tonies Fixed in Version => 1.3.0
2013-05-13 15:25 Martijn Tonies Resolution open => fixed
2013-05-13 15:25 Martijn Tonies Assigned To => Martijn Tonies
2013-05-21 14:06 Martijn Tonies Summary Debugger error with output parameters => Debugger error with assigning values to output parameters using Trace Into
2013-06-03 16:49 Martijn Tonies Status resolved => closed