You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consider an RDFGraph UniKG and another node table Students and a rel table SameAs from Students to UniKG_r. You can drop UniKG even if that would leave Students around. Normally this would give a Binder exception that says: "Cannot delete node table nodeTableX referenced by rel table relTableY."
To replicate:
kuzu> CREATE RDF Graph UniKG;
kuzu> CREATE NODE TABLE Students(name STRING, primary key (name));
kuzu> CREATE REL TABLE SameStudent(FROM Students TO UniKG_r);
kuzu> DROP TABLE UniKG;
kuzu> MATCH (a:Students)-[s:SameStudent]->(b) RETURN *;
Error: unordered_map::at: key not found
Consider an RDFGraph UniKG and another node table Students and a rel table SameAs from Students to UniKG_r. You can drop UniKG even if that would leave Students around. Normally this would give a Binder exception that says: "Cannot delete node table nodeTableX referenced by rel table relTableY."
To replicate:
Normally, this would happen:
So the system does not allow dropping nodeTable2.
The text was updated successfully, but these errors were encountered: