我想创建一个索引如下:
CREATE INDEX ON :Person(Id)
当我执行它时,似乎工作正常:
Added 1 index, completed after 46 ms.
但是,如果我使用CALL db.indexes
检查我的索引状态,则说明其状态为FAILED
。当我尝试删除它时,我收到以下错误消息:
Neo.DatabaseError.Transaction.TransactionCommitFailed: Could not apply the transaction to the store after written to log
我在日志中找不到任何有用的东西。有人知道如何解决这个问题吗?