diff options
author | Alex Tatiyants <atatiyan@gmail.com> | 2016-01-04 21:32:55 -0800 |
---|---|---|
committer | Alex Tatiyants <atatiyan@gmail.com> | 2016-01-04 21:32:55 -0800 |
commit | 9554ab8c51c0a5853a58be98936223908eabcbb9 (patch) | |
tree | 5a6635bbaecabd593981a71ca6ce63632482903a /app/services/plan-service.ts | |
parent | d89ddcf3532937d395898f255c42f3d26303f1c4 (diff) |
add node descriptions, clean up plan-node.ts
Diffstat (limited to 'app/services/plan-service.ts')
-rw-r--r-- | app/services/plan-service.ts | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/app/services/plan-service.ts b/app/services/plan-service.ts index 5d7dc3c..2e56bac 100644 --- a/app/services/plan-service.ts +++ b/app/services/plan-service.ts @@ -12,7 +12,13 @@ export class PlanService { ACTUAL_LOOPS_PROP: string = 'Actual Loops'; TOTAL_COST_PROP: string = 'Total Cost'; PLANS_PROP: string = 'Plans'; - + RELATION_NAME_PROP: string = 'Relation Name'; + SCHEMA_PROP: string = 'Schema'; + ALIAS_PROP: string = 'Alias'; + GROUP_KEY_PROP: string = 'Group Key'; + SORT_KEY_PROP: string = 'Sort Key'; + JOIN_TYPE_PROP: string = 'Join Type'; + INDEX_NAME_PROP: string = 'Index Name'; // computed by pev COMPUTED_TAGS_PROP: string = "*Tags"; |