Resolve #3500108 "Add explain output"
1 unresolved thread
Closes #3500108
Merge request reports
Activity
630 679 if ($show_info || $show_query || $show_stats) { 631 680 // Get information from the preview for display. 632 681 if (!empty($executable->build_info['query'])) { 682 $connection = Database::getConnection(); 683 633 684 if ($show_query) { 634 685 $query_string = $executable->build_info['query']; 686 635 687 // Only the sql default class has a method getArguments. 636 688 $quoted = []; 637 689 638 if ($executable->query instanceof Sql) { 690 if ($query_string instanceof SelectInterface) {
Please register or sign in to reply