aboutsummaryrefslogtreecommitdiff
path: root/app/services/help-service.ts
diff options
context:
space:
mode:
authorAlex Tatiyants <atatiyan@gmail.com>2016-03-05 11:58:52 -0800
committerAlex Tatiyants <atatiyan@gmail.com>2016-03-05 11:58:52 -0800
commitcd2af1466b1c23f81c13af61fa550475f82e0227 (patch)
tree30c17082928a60c4822b0499ac4ca9b5e1731b3a /app/services/help-service.ts
parent7fc812bc761c95e508e1c540393b12b03cdf1d03 (diff)
better handle CTE scans, including correct duration calculations. fix #15
Diffstat (limited to 'app/services/help-service.ts')
-rw-r--r--app/services/help-service.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/services/help-service.ts b/app/services/help-service.ts
index 6067b05..532d694 100644
--- a/app/services/help-service.ts
+++ b/app/services/help-service.ts
@@ -26,5 +26,8 @@ export var NODE_DESCRIPTIONS = {
from the index and do not read from the corresponding table.`,
'BITMAP HEAP SCAN': 'searches through the pages returned by the <strong>Bitmap Index Scan</strong> for relevant rows.',
'BITMAP INDEX SCAN': `uses a <strong>Bitmap Index</strong> (index which uses 1 bit per page) to find all relevant pages.
- Results of this node are fed to the <strong>Bitmap Heap Scan</strong>.`
+ Results of this node are fed to the <strong>Bitmap Heap Scan</strong>.`,
+ 'CTE SCAN': `performs a sequential scan of <strong>Common Table Expression (CTE) query</strong> results. Note that
+ results of a CTE are materialized (calculated and temporarily stored).`
+
};