You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tinkerpop.apache.org by "Stephen Mallette (Jira)" <ji...@apache.org> on 2019/11/25 20:30:00 UTC

[jira] [Commented] (TINKERPOP-2306) TextP operator containing not work on java core driver

    [ https://issues.apache.org/jira/browse/TINKERPOP-2306?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16981871#comment-16981871 ] 

Stephen Mallette commented on TINKERPOP-2306:
---------------------------------------------

[~gfxman] did you ever get a moment to check into this. i tried to recreate the problem but didn't have success with Gremlin Server and TinkerGraph.

{code}
gremlin> g = traversal().withRemote('conf/remote-graph.properties')
==>graphtraversalsource[emptygraph[empty], standard]
gremlin> g.V().hasLabel('person').repeat(out().simplePath()).until(has('person', 'name', TextP.containing('vadas')))
==>v[2]
{code}

> TextP operator containing not work on java core driver
> ------------------------------------------------------
>
>                 Key: TINKERPOP-2306
>                 URL: https://issues.apache.org/jira/browse/TINKERPOP-2306
>             Project: TinkerPop
>          Issue Type: Bug
>          Components: driver
>    Affects Versions: 3.4.0, 3.4.1
>            Reporter: Kalawa André
>            Priority: Major
>
> I am using gremlin driver for java (3.4.0 version).
> My remote database is Neptune AWS, this version supporte containing operator.
> But through the gremlin driver in my java code I am getting an exception  for the operator 
> _TextP.containing._
> _Here are some details_
> {code:java}
> // my gremlin query
> 1) ok case
> g.V().hasLabel('toons').repeat(out().simplePath()).until(has('denomination', 'Name', P.eq('Asterix')))
> 2 ko case
> g.V().hasLabel('toons').repeat(out().simplePath()).until(has('denomination', 'Name', TextP.containing('Asterix')))
> // Exceptions from Neptune
> REQUEST_ERROR_INVALID_REQUEST_ARGUMENTS
> {"code":"InvalidParameterException","detailedMessage":"Invalid OpProcessor requested [null]"}
> // Exception from Driver 
> java.lang.NullPointerException: null
> {code}
> I found same issue here
> [https://github.com/JanusGraph/janusgraph/issues/239]
>  
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)