There seem to be two issues with the AutoSuggest functionality that are likely related:
When typing SELECT * FROM, the suggestions contain schema names and tables from the default schema. So far so good, but when you then select any of these options, the snippet showing on the side has the selected item's name for both Table and Table Name, wich is wrong. This is just an informational piece, so not all that harmful.
When moving on and selecting a schema such as SELECT * FROM MySchema., the suggestions still seem to use exactly the same query as above and don't look for tables/views inside MySchema. This is making the AutoSuggest really get in the way of working rather than helping users build queries.
There seem to be two issues with the AutoSuggest functionality that are likely related:
When typing
SELECT * FROM
, the suggestions contain schema names and tables from the default schema. So far so good, but when you then select any of these options, the snippet showing on the side has the selected item's name for both Table and Table Name, wich is wrong. This is just an informational piece, so not all that harmful.When moving on and selecting a schema such as
SELECT * FROM MySchema.
, the suggestions still seem to use exactly the same query as above and don't look for tables/views inside MySchema. This is making the AutoSuggest really get in the way of working rather than helping users build queries.