-
Notifications
You must be signed in to change notification settings - Fork 495
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The apoc.cypher.runSchemaFile() never finishes execution #4015
Comments
Isolated test caseNote that the issue occurs also with a test container and with a real Neo4j instance
NOTE: By changing the
|
Since it might be a Neo4j issue, I also created a similar issue in the main repository \cc @jexp |
Update from trello card (id Could be Check if the bug is still present |
Currently, using apoc/neo4j 5.25 the problem is no longer present, by executing a
the procedure returns an empty result. While executing
the following error like this one is thrown:
|
Expected Behavior (Mandatory)
The procedure should finish correctly.
Actual Behavior (Mandatory)
The procedure never finishes execution.
How to Reproduce the Problem
Starting from version 5.18.0, the
apoc.cypher.runSchemaFile()
has the following bug.Steps (Mandatory)
CREATE CONSTRAINT uniqueConstraint FOR (n:Person) REQUIRE n.name IS UNIQUE
file.cypher
with the same constraint statement, so as to produce anEquivalentSchemaRuleAlreadyExistsException
:CALL apoc.cypher.runSchemaFile('file.cypher')
Versions
The text was updated successfully, but these errors were encountered: