diff --git a/src/Support/Explain.php b/src/Support/Explain.php index ca228b2e..6d58b205 100644 --- a/src/Support/Explain.php +++ b/src/Support/Explain.php @@ -105,7 +105,7 @@ private function generateVisualExplainPgsql(ConnectionInterface $connection, str { return (string) Http::asForm()->post('https://explain.dalibo.com/new', [ 'query' => $query, - 'plan' => $connection->selectOne("EXPLAIN (FORMAT JSON) {$query}", $bindings)->{'QUERY PLAN'}, + 'plan' => $connection->selectOne("EXPLAIN (ANALYZE, COSTS, VERBOSE, BUFFERS, FORMAT JSON) {$query}", $bindings)->{'QUERY PLAN'}, 'title' => '', ])->effectiveUri(); }