-
Notifications
You must be signed in to change notification settings - Fork 17
Empty utPLSQL windows when Show suites (hierarchical view of tests)?
is unchecked
#138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I tried on another device with sql developer 19.4 and there are no problems there |
I reinstalled utplsql and the proble has gone.... |
The problem is back, on both devices. |
Reset to factory settings does not solve the problem. |
Ok, the utPLSQL tab looks strange. I have currently no idea how to reproduce this. Could you please run the following in a SQL worksheet and provide the output? set serveroutput on
-- version information
declare
l_version varchar2(255);
l_compatibility varchar2(255);
begin
dbms_utility.db_version( l_version, l_compatibility );
dbms_output.put_line( l_version );
dbms_output.put_line( l_compatibility );
end;
/
select substr(ut.version(),1,60) as ut_version from dual;
select * from v$version;
select * from nls_session_parameters;
select substr(dbms_utility.port_string,1,60) as port_string from dual;
-- test run
execute ut.run; Furthermore, what happens when you close the utPLSQL window and run a test either from the editor or the Connections Window? Does it work? If yes, what are the excact steps to create such an empty utPLSQL window? |
I found the issue. It's a bug. Please make sure that Close the utPLSQL window. Then you can start a tests run and the window should be initialized properly. You can switch the view within the GUI without problems. |
Show suites (hierarchical view of tests)?
is unchecked
Thx!, that did the trick. I played around with those options. |
Keep issue open until the bug is fixed in the main branch. |
…indow fixes #138 - avoid exception during UI initialization, check if a row is selected
Hello

I installed the plug in in sql developer 20.4. The plugin worked fine, I tweaked some preferences and now I do not get any results anymore. Running ut.run works fine.
Any help is appreciated
Regard Erik
The text was updated successfully, but these errors were encountered: