7299_testToMaster #2411

Merged
alexm merged 342 commits from 7299_testToMaster into master 2024-05-07 05:30:42 +00:00
1 changed files with 3 additions and 5 deletions
Showing only changes of commit 886bd7f105 - Show all commits

View File

@ -1,15 +1,13 @@
DELIMITER $$
$$
CREATE OR REPLACE DEFINER=`root`@`localhost` PROCEDURE floranet.item_get(vCatalogueFk INT)
CREATE OR REPLACE DEFINER=`root`@`localhost` PROCEDURE floranet.catalogue_findById(vSelf INT)
READS SQL DATA
BEGIN
/**
* Returns one recordset from catalogue
*
* @param vCatalogueFk Identifier de vn.catalogue
* @param vCatalogueFk Identifier de floranet.catalogue
*/
SELECT *
FROM catalogue
WHERE id = vCatalogueFk;
SELECT * FROM catalogue WHERE id = vSelf;
END$$
DELIMITER ;