Bug: Popup Menu is referencing the wrong table.

jking

Member²
I have the following lines in a SQL window which consists of a dml statement on one line and a list of tables/views on the following lines.

select * from dual
user_objects
user_views
...
If I right-click on any tables/views from the list and do a "Query data", the table/view above the one that I clicked on is queried.

So if try to do a "Query data" on the "user_views", it actually queries the "user_objects".

Thanks,
Joe
 
The view names are interpreted as an alias, due to the fact that -as a whole- this is not a correct SQL statement.

We'll try to improve this.
 
Back
Top