Skip to content

Commit

Permalink
fix scan vertex index for prop value (#219)
Browse files Browse the repository at this point in the history
close #218
  • Loading branch information
wey-gu authored Jul 12, 2022
1 parent 800f0f9 commit 8c328c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nebula3/sclient/BaseResult.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def as_node(self):
tag.props = {}
index = self.PROP_START_INDEX
while index < len(self._col_names):
tag.props[self._col_names[index]] = self._row.values[index]
tag.props[self._col_names[index]] = self._row.values[index + 1]
index = index + 1
vertex.tags.append(tag)

Expand Down

0 comments on commit 8c328c5

Please sign in to comment.