- 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;
Step 2 should throw an error because the constraint is no longer satisfied.
Schema:
type A {
link value -> C {
on target delete allow;
};
constraint expression on (
EXISTS .value
);
}
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;Step 2 should throw an error because the constraint is no longer satisfied.
Schema: