View Issue Details

IDProjectCategoryView StatusLast Update
0000637Database Workbench v4MySQL Modulepublic2013-08-19 14:15
ReporterMartijn Tonies Assigned ToMartijn Tonies  
PrioritynormalSeverityminorReproducibilityhave not tried
Status closedResolutionfixed 
Product Version4.4.0 
Fixed in Version4.4.1 
Summary0000637: Debugger error with output parameters
DescriptionDebugger error with output parameters.

When 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:05 Martijn Tonies New Issue
2013-05-10 09:05 Martijn Tonies Status new => confirmed
2013-05-13 15:28 Martijn Tonies Status confirmed => resolved
2013-05-13 15:28 Martijn Tonies Fixed in Version => 4.4.1
2013-05-13 15:28 Martijn Tonies Resolution open => fixed
2013-05-13 15:28 Martijn Tonies Assigned To => Martijn Tonies
2013-08-19 14:15 Martijn Tonies Status resolved => closed