Skip to content
Snippets Groups Projects

Resolve #3500108 "Add explain output"

Open Fabian Franz requested to merge issue/drupal-3500108:3500108-add-explain-output into 11.1.x
1 unresolved thread

Closes #3500108

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
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) {
  • Len Swaneveld added 1 commit

    added 1 commit

    Compare with previous version

  • Please register or sign in to reply
    Loading