diff options
author | Alex Tatiyants <atatiyan@gmail.com> | 2016-03-05 11:58:52 -0800 |
---|---|---|
committer | Alex Tatiyants <atatiyan@gmail.com> | 2016-03-05 11:58:52 -0800 |
commit | cd2af1466b1c23f81c13af61fa550475f82e0227 (patch) | |
tree | 30c17082928a60c4822b0499ac4ca9b5e1731b3a /app/components | |
parent | 7fc812bc761c95e508e1c540393b12b03cdf1d03 (diff) |
better handle CTE scans, including correct duration calculations. fix #15
Diffstat (limited to 'app/components')
-rw-r--r-- | app/components/plan-node/plan-node.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/components/plan-node/plan-node.html b/app/components/plan-node/plan-node.html index 60cdf50..86db018 100644 --- a/app/components/plan-node/plan-node.html +++ b/app/components/plan-node/plan-node.html @@ -35,6 +35,9 @@ using</span> {{node[_planService.INDEX_NAME_PROP]}}</div> <div class="relation-name" *ngIf="node[_planService.HASH_CONDITION_PROP]"><span class="text-muted"> on</span> {{node[_planService.HASH_CONDITION_PROP]}}</div> + <div class="relation-name" *ngIf="node[_planService.CTE_NAME_PROP]"> + <span class="text-muted">CTE</span> {{node[_planService.CTE_NAME_PROP]}} + </div> </div> <div class="tags" *ngIf="viewOptions.showTags && tags.length > 0"> |