I have update to the latest (10.3.0.5813) and noticed that there is a new query running every time I change the selected table or view
SELECT k.*, r.UPDATE_RULE, r.DELETE_RULE FROM information_schema.KEY_COLUMN_USAGE AS k, information_schema.REFERENTIAL_CONSTRAINTS AS r WHERE k.CONSTRAINT_SCHEMA='local_database' AND k.TABLE_NAME='local_table' AND k.REFERENCED_TABLE_NAME IS NOT NULL AND k.CONSTRAINT_SCHEMA = r.CONSTRAINT_SCHEMA AND k.TABLE_NAME=r.TABLE_NAME AND k.CONSTRAINT_NAME=r.CONSTRAINT_NAME;
This query takes up to 5 seconds to execute on my VM and during this time HeidiSQL freezes until it receives reply from the sql query . HeidiSQL is running on Windows 7
I installed previous version (10.3.0.5771) I see the above query is not executed for every new table you select and there is no problem.