GumpacG opened a new pull request, #3381: URL: https://github.com/apache/tinkerpop/pull/3381
https://issues.apache.org/jira/browse/TINKERPOP-3233 This is the first part of resolving the ticket. This change fixes a bug in Go in which characters that should be escaped are being replaced by a dot. Bug: The traversal `result, err := g.V().Has(vertexLabel, "name", "m m").Next()` would generate the GremlinLang `g.V().has(vertexLabel, "name", "m.m").next()`. New behaviour: The traversal `result, err := g.V().Has(vertexLabel, "name", "m m").Next()` would generate the GremlinLang `g.V().has(vertexLabel, "name", "m\tm").next()`. A test has been added to `gremlinlang_test.go` for testing all cases that should be escaped. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
