Skip to content

Commit

Permalink
Display index used in query plan
Browse files Browse the repository at this point in the history
  • Loading branch information
oskarhane committed May 16, 2016
1 parent f75be3e commit bf3f6e3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/visualization/components/queryPlan.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,10 @@ neo.queryPlan = (element)->
wordWrap(identifiers.filter((d) -> not (/^ /.test(d))).join(', '), 'identifiers')
details.push { className: 'padding' }

if index = operator.Index
wordWrap(index, 'index')
details.push { className: 'padding' }

if expression = operator.LegacyExpression ? operator.ExpandExpression ? operator.LabelName
wordWrap(expression, 'expression')
details.push { className: 'padding' }
Expand Down

0 comments on commit bf3f6e3

Please sign in to comment.