No, you do not seem to be able to.
When you select Count Rows
from the context menu, it starts counting in the main user interface thread, hanging the entire user interface, possibly for minutes or hours.
Itβs better not to use this function - just set select count (*) from ( < your query here>)
, which it starts correctly in a separate thread, which can be undone.
Andyw source share