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
Vertices are correctly updated when a vertex linked with lightweight edges is removed
Actual behavior
Stale links
Steps to reproduce
Enable Lightweight Edges
CREATE CLASS SimpleV EXTENDS V
CREATE CLASS SimpleE EXTENDS E
INSERT INTO SimpleV CONTENT {"name":"A"} // this is #25:0
INSERT INTO SimpleV CONTENT {"name":"B"} // this is #25:1
CREATE EDGE SimpleE FROM #25:0 TO #25:1
SELECT FROM SimpleE // empty result, provides that Lightweight Edge was used
DELETE VERTEX #25:1
SELECT FROM SimpleV // returns #25:0, with OUT still showing link to #25:1
The text was updated successfully, but these errors were encountered:
OrientDB Version: 2.2.30
Expected behavior
Vertices are correctly updated when a vertex linked with lightweight edges is removed
Actual behavior
Stale links
Steps to reproduce
Enable Lightweight Edges
CREATE CLASS SimpleV EXTENDS V
CREATE CLASS SimpleE EXTENDS E
INSERT INTO SimpleV CONTENT {"name":"A"} // this is #25:0
INSERT INTO SimpleV CONTENT {"name":"B"} // this is #25:1
CREATE EDGE SimpleE FROM #25:0 TO #25:1
SELECT FROM SimpleE // empty result, provides that Lightweight Edge was used
DELETE VERTEX #25:1
SELECT FROM SimpleV // returns #25:0, with OUT still showing link to #25:1
The text was updated successfully, but these errors were encountered: