Skip to content
Snippets Groups Projects
Verified Commit 3e8ebe04 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

BUG: fix syntax error

parent fd012c4f
No related branches found
No related tags found
1 merge request!12DRAFT: ENH: file system: core
Pipeline #47481 failed
...@@ -39,7 +39,7 @@ CREATE PROCEDURE db_5_0.retrieveEntityACL( ...@@ -39,7 +39,7 @@ CREATE PROCEDURE db_5_0.retrieveEntityACL(
IN EntityID INT UNSIGNED) IN EntityID INT UNSIGNED)
retrieveEntityACLBody: BEGIN retrieveEntityACLBody: BEGIN
SELECT a.acl AS ACL FROM entity_acl AS a JOIN entities AS e ON (e.acl = a.id) JOIN entity_ids as eids ON (e.id = eids.internal_id WHERE eids.id = EntityID; SELECT a.acl AS ACL FROM entity_acl AS a JOIN entities AS e ON (e.acl = a.id) JOIN entity_ids as eids ON (e.id = eids.internal_id) WHERE eids.id = EntityID;
END; END;
// //
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment