I was not aware that typing schema.tablename. would produce the proper column list for tablename. And after reading that here, I am very happy to see that typing tablename. also works for the default schema.
What about aliases? I am in the habit of typing queries as:
select t.column1, t.column2
from tablename t
where t.column? = somevalue;
When I am typing "t." I expect the same column names as typing "tablename." would produce. Is this possible?