File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
lib/visualization/components Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -354,6 +354,7 @@ angular.module('neo4jApp.services')
354
354
Rows : plan .rows ,
355
355
EstimatedRows : plan .arguments .EstimatedRows ,
356
356
identifiers : plan .identifiers ,
357
+ Index : plan .arguments .Index ,
357
358
children : plan .children .map boltPlanToRESTPlanShared
358
359
}
359
360
Original file line number Diff line number Diff line change @@ -104,6 +104,10 @@ neo.queryPlan = (element)->
104
104
wordWrap (identifiers .filter ((d ) -> not (/ ^ / .test (d))).join (' , ' ), ' identifiers' )
105
105
details .push { className : ' padding' }
106
106
107
+ if index = operator .Index
108
+ wordWrap (index, ' index' )
109
+ details .push { className : ' padding' }
110
+
107
111
if expression = operator .LegacyExpression ? operator .ExpandExpression ? operator .LabelName
108
112
wordWrap (expression, ' expression' )
109
113
details .push { className : ' padding' }
You can’t perform that action at this time.
0 commit comments