Bug #23980 large number of resultsets makes the window too big
Submitted: 5 Nov 2006 6:41 Modified: 6 Dec 2006 15:49
Reporter: [ name withheld ] Email Updates:
Status: Closed Impact on me:
None 
Category:MySQL Query Browser Severity:S3 (Non-critical)
Version:1.2.5beta OS:Linux (Debian)
Assigned to: Alfredo Kojima CPU Architecture:Any

[5 Nov 2006 6:41] [ name withheld ]
Description:
Original at http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=356358

A large number of resultsets makes the window too big.

How to repeat:
STEP 1 (create procedure script):
delimiter //
CREATE PROCEDURE test ()
BEGIN
DECLARE i INT DEFAULT 0;
my_loop: LOOP
  SET i = i + 1;
  SELECT i;
  IF i >= 10 THEN
    LEAVE my_loop;
  END IF;
END LOOP my_loop;
END;
//

STEP 2 (query from the gui):
CALL test();

STEP 3 (cleanup):
DROP PROCEDURE test;

After step 2 the window will be resized to a size much bigger than the
screen and is not resizeable or scrollable.

Suggested fix:
Add another scrollbar so result sets can be scolled if needed. This would allow the window to be resized back down to something smaller than height of the screen.
[6 Dec 2006 15:49] Alfredo Kojima
Thank you for your bug report. This issue has been committed to our source repository of that product and will be incorporated into the next release.

If necessary, you can access the source repository and build the latest available version, including the bug fix. More information about accessing the source trees is available at

    http://dev.mysql.com/doc/en/installing-source.html