I think Dual session mode don't work in test window ?

I'm using PL/SQL Developer(7.1.5.1397)
In Help file, Dual session - The Test Windows, SQL Windows and Command Windows will share one session, and another session will be used for compilations.
But It don't work in test window.
Everytime I execute test window, session id increase.

-------------------------------
declare
i integer;
begin
dbms_output.put_line(userenv('SESSIONID'));
end;
--------------------------------
 
The debugger does indeed require an additional session to control execution of the secondary session of the Test Window.
 
Back
Top