Marcel Hoefs
Member³
Hello,
Just recently we are experiencing a bug in the procedure editor, more specifically the code contents window. After some research we found that it is probably a parsing bug related to case expressions.
The following piece of code leads to an empty code contents window:
We are using PL/SQL developer 6.06.947 but it also occurs in trial version 7.1.0.1337
Does anybody else know of this problem and in which version of PL/SQL developer this will be fixed?
Thanks, Marcel.
Just recently we are experiencing a bug in the procedure editor, more specifically the code contents window. After some research we found that it is probably a parsing bug related to case expressions.
The following piece of code leads to an empty code contents window:
Code:
FOR r_var IN c_var
(b_var => CASE t_var
WHEN 'value1'
THEN 'value2'
ELSE 'value3'
END
)
LOOP
...
Does anybody else know of this problem and in which version of PL/SQL developer this will be fixed?
Thanks, Marcel.