update on delete test

This commit is contained in:
antoniofilipovic
2023-09-07 18:08:36 +02:00
parent b4715a5e50
commit 54d2f5f66b

View File

@@ -86,7 +86,7 @@ void CreateOnDeleteTriggers(mg::Client &client, bool is_before,
fmt::format("CREATE TRIGGER {} ON DELETE "
"{} COMMIT "
"EXECUTE "
"CALL write.access_deleted(deletedObjects) YIELD status RETURN status;",
"CALL write.access_deleted(deletedObjects) YIELD status RETURN status;",
kTriggerNameOnObjectDeleteTriggerProc, before_or_after));
client.DiscardAll();
};