ArcadeDB Version:23.1.1-SNAPSHOT (build 1b37118/1672643983571/main)
JDK Version:
OS: Linux (Docker)
Expected behavior
Query
MATCH (p) DELETE p
should delete p
Actual behavior
MATCH (p) DELETE p
results following error:
groovy.lang.MissingMethodException: No signature of method: org.apache.tinkerpop.gremlin.groovy.jsr223.GremlinGroovyScriptEngine.cypherException() is applicable for argument types: () values: []
Steps to reproduce
WIth empty database
CREATE (p:Person) RETURN p
MATCH (p) DELETE p
In 22.6.1 delete worked.