[Bug] open wrong table definition

Matthew

Member
When I typed the below contents, and use [ctrl] + click the table2, it will open he definition of table1.

select *
from table1

select *
from table2

Thanks.
 
The problem is caused by the fact that the 2 queries are not separated by a semi-colon or slash, so syntactically the text is incorrect.
 
Back
Top