Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Not A Problem
-
3.4.6
-
None
-
None
Description
Below python script print the result set out of order
g = traversal().withRemote( DriverRemoteConnection('ws://127.0.0.1:8182/gremlin', 'gmodern', username='admin', password='admin')) persons = g.V().hasLabel('person').values('name', 'age').toList(); print(persons)
Result:
['marko', 29, 'vadas', 27, 'josh', 32, 'peter', 35, '王菲', 30, 30, 30, '李希希', '张飞']
Seems if there are Chinese characters in the vertex property, the result will be out of order.
The issue is not present from the java client.