Edit Parameters dialog pops up when using labels

Discussion of open issues, suggestions and bugs regarding database management and administration tools for MySQL
Post Reply
lieszkol
Posts: 4
Joined: Sun 15 Jul 2018 07:56

Edit Parameters dialog pops up when using labels

Post by lieszkol » Wed 25 Jul 2018 21:20

The "Edit Parameters" dialog pops up every time I execute a CREATE PROCEDURE... that has any labels inside.
DBForge seems to think that labels are parameters.

Try to run this code:

Code: Select all

DELIMITER //
DROP PROCEDURE IF EXISTS `sp_test` //
CREATE DEFINER=`localhost`@`localhost` PROCEDURE `sp_test`(
)
	LANGUAGE SQL
	NOT DETERMINISTIC
	CONTAINS SQL
	SQL SECURITY DEFINER
	COMMENT ''
proc_label:BEGIN

END//
And DBForge asks for a "BEGIN" parameter:
Image

alexa

Re: Edit Parameters dialog pops up when using labels

Post by alexa » Wed 01 Aug 2018 09:56

We will investigate this issue and will answer you as soon as possible.

alexa

Re: Edit Parameters dialog pops up when using labels

Post by alexa » Wed 01 Aug 2018 14:59

We will fix this issue in one of the next product builds and will notify you once it's available for downloading.

Post Reply