- EdgeDB Version:
1.0-alpha.7+g85a3931a7.d20210113 from Docker Hub
- OS Version: Official Docker image running on
NixOS 21.03pre-git (x86_64)
Steps to Reproduce:
INSERT B { value := (INSERT C) };
DELETE C;
Now B should be deleted through the A.value link target deletion policy, but it was instead set empty. Check with SELECT B { value };.
Schema:
abstract type A {
link value -> C {
on target delete delete source;
};
}
type B extending A {}
type C {}
1.0-alpha.7+g85a3931a7.d20210113from Docker HubNixOS 21.03pre-git (x86_64)Steps to Reproduce:
INSERT B { value := (INSERT C) };DELETE C;Now
Bshould be deleted through theA.valuelink target deletion policy, but it was instead set empty. Check withSELECT B { value };.Schema: