You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tinkerpop.apache.org by "aqiang ji (Jira)" <ji...@apache.org> on 2021/04/19 01:33:00 UTC

[jira] [Updated] (TINKERPOP-2549) Result set including Chinese cha out of order from gremlin-python client

     [ https://issues.apache.org/jira/browse/TINKERPOP-2549?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

aqiang ji updated TINKERPOP-2549:
---------------------------------
    Summary: Result set including Chinese cha out of order from gremlin-python client  (was: Result set out of order from gremlin-python client)

> Result set including Chinese cha 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: Blocker
>
> 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)