dbForge MySQL 2020 Bug - Overrides SP Parameter Formatting
Posted: Fri 17 Apr 2020 17:26
Version 9.0.269 BETA
When trying to format the layout of a Stored Procedures parameters, dbForge overrides and modifies.
For example:
Is always changed to:
This is bad for visual formatting and visibility for stored procedures with numerous parameter definitions.
When trying to format the layout of a Stored Procedures parameters, dbForge overrides and modifies.
For example:
Code: Select all
PROCEDURE test_main.internal_JSON_compare(
IN in_compare_type_c tinyint,
IN in_JSON_original json,
IN in_JSON_new json,
OUT out_JSON_compared json,
OUT out_result BOOL)
NO SQL
Code: Select all
PROCEDURE test_main.internal_JSON_compare(IN in_compare_type_c TINYINT, IN in_JSON_original JSON, IN in_JSON_new JSON, OUT out_JSON_compared JSON, OUT out_result BOOL)
NO SQL