Very cool idea suggested by @lauxjpn: we now have ToQueryString, we could also get the query plan from the database. SQL Server: ```sql SET SHOWPLAN_ALL ON; <query> SET SHOWPLAN_ALL OFF; ``` PostgreSQL / SQLite ```sql EXPLAIN <query> ```