[
https://issues.apache.org/jira/browse/TINKERPOP-2549?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Stephen Mallette closed TINKERPOP-2549.
---------------------------------------
Resolution: Not A Problem
> Result set including Chinese characters out of order from gremlin-python
> client
> -------------------------------------------------------------------------------
>
> Key: TINKERPOP-2549
> URL: https://issues.apache.org/jira/browse/TINKERPOP-2549
> Project: TinkerPop
> Issue Type: Bug
> Components: python
> Affects Versions: 3.4.6
> Reporter: aqiang ji
> Priority: Major
>
> Below python script print the result set out of order
>
> {code:java}
> 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)
> {code}
> Result:
>
> {code:java}
> ['marko', 29, 'vadas', 27, 'josh', 32, 'peter', 35, '王菲', 30, 30, 30, '李希希',
> '张飞']
> {code}
> 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.
>
>
--
This message was sent by Atlassian Jira
(v8.3.4#803005)