Enhancement requests (describe&table context)

mwibse

Member
Using 8.0.2.1505
1. A describe window/dialog should close with ALT-F4 if it's active.
2. Improved SQL Window objects awareness.
IF you in an SQL Window write:

SELECT *
FROM table_1
table_2

And I RMB on table_2 it looks like you can manipulate it (Edit, Describe, Drop ...) but you are actually manipulating table_1!

It seems like the Context RMB code thinks anything directly after (not counting linefeed/new row) is an alias and should bring up the RMB table options.
 
Last edited:
1. A describe window/dialog should close with ALT-F4 if it's active.
Doesn't Alt-F4 typically close an application?

2. Improved SQL Window objects awareness.
IF you in an SQL Window write:

SELECT *
FROM table_1
table_2

And I RMB on table_2 it looks like you can manipulate it (Edit, Describe, Drop ...) but you are actually manipulating table_1!
That is correct because table_2 is an alias for table_1 in this statement.
 
Back
Top