We had a private synonym for a table.
In order to navigate to the synonym in Object Browser from a SQL Window, I right-click synonym's name and chose Browse. However, that jumps to the table (in Object Browser), not to the synonym. If the developer is not careful, he may right-click the object in the Object Browser, and chose Drop, thinking that he's dropping the synonym... It happened in our team.
Please fix it.
Reproduce:
Table test_drop_synonym is picked in Object Browser, instead of synonym tst_drp_syn.
In order to navigate to the synonym in Object Browser from a SQL Window, I right-click synonym's name and chose Browse. However, that jumps to the table (in Object Browser), not to the synonym. If the developer is not careful, he may right-click the object in the Object Browser, and chose Drop, thinking that he's dropping the synonym... It happened in our team.
Please fix it.
Reproduce:
Code:
1. drop table test_drop_synonym;
2. create table test_drop_synonym(a int);
3. create synonym tst_drp_syn for test_drop_synonym;
4. From the SQL Window, right-click on synonym's name, tst_drp_syn and choose Browse
Table test_drop_synonym is picked in Object Browser, instead of synonym tst_drp_syn.