Skip to content

Commit bf3f6e3

Browse files
committed
Display index used in query plan
1 parent f75be3e commit bf3f6e3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lib/visualization/components/queryPlan.coffee

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,10 @@ neo.queryPlan = (element)->
104104
wordWrap(identifiers.filter((d) -> not (/^ /.test(d))).join(', '), 'identifiers')
105105
details.push { className: 'padding' }
106106

107+
if index = operator.Index
108+
wordWrap(index, 'index')
109+
details.push { className: 'padding' }
110+
107111
if expression = operator.LegacyExpression ? operator.ExpandExpression ? operator.LabelName
108112
wordWrap(expression, 'expression')
109113
details.push { className: 'padding' }

0 commit comments

Comments
 (0)