SQL fixes
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Juan Ferrer 2020-09-28 21:25:53 +02:00
parent 82de0a30a4
commit 991bece64a
1 changed files with 2 additions and 2 deletions

View File

@ -13,8 +13,8 @@ BEGIN
SELECT `name` INTO vName
FROM user
WHERE id = vId;
WHERE id = vSelf;
RETURN vSelf;
RETURN vName;
END$$
DELIMITER ;