#2687 - Travel CloneWithEntries #1887

Merged
jsegarra merged 20 commits from 2687_travel_cloneWithEntries into dev 2024-01-24 10:55:20 +00:00
4 changed files with 7 additions and 8 deletions
Showing only changes of commit b5d883cdbe - Show all commits

View File

@ -0,0 +1,3 @@
GRANT EXECUTE ON PROCEDURE util.tx_commit TO guest;
GRANT EXECUTE ON PROCEDURE util.tx_rollback TO guest;
GRANT EXECUTE ON PROCEDURE util.tx_start TO guest;

View File

@ -1,5 +1,3 @@
DROP PROCEDURE IF EXISTS util.tx_commit;
DELIMITER $$
$$
/**
jsegarra marked this conversation as resolved Outdated

los cambios van dentro del create

los cambios van dentro del create

Exacto.
He cogido un archivo creado por un compañero y he visto otro fallo. Había un salto de línea entre END y

Exacto. He cogido un archivo creado por un compañero y he visto otro fallo. Había un salto de línea entre END y $$

Corregido cddd8f7d94

Corregido cddd8f7d94713f985c624ae9dfa1d839310dacf2
@ -8,7 +6,7 @@ $$
* @param tx BOOL es true si existe transacción asociada
jsegarra marked this conversation as resolved Outdated

falta *

falta *

Corregido 056dddd212

Corregido 056dddd21229f2c8911c0917555e24bea5a254ad
*/
CREATE DEFINER=`root`@`localhost` PROCEDURE `util`.`tx_commit`(IN tx BOOL)
CREATE OR REPLACE DEFINER=`root`@`localhost` PROCEDURE `util`.`tx_commit`(IN tx BOOL)
BEGIN
IF tx THEN
COMMIT;

View File

@ -1,5 +1,3 @@
DROP PROCEDURE IF EXISTS util.tx_rollback;
DELIMITER $$
$$
/**
@ -8,7 +6,7 @@ $$
* @param tx BOOL es true si existe transacción asociada
jsegarra marked this conversation as resolved Outdated

pon una descripcion en cada uno para que la gente sepa que hace

pon una descripcion en cada uno para que la gente sepa que hace
*/
CREATE DEFINER=`root`@`localhost` PROCEDURE `util`.`tx_rollback`(tx BOOL)
CREATE OR REPLACE DEFINER=`root`@`localhost` PROCEDURE `util`.`tx_rollback`(tx BOOL)
BEGIN
IF tx THEN
ROLLBACK;

View File

@ -1,4 +1,4 @@
DROP PROCEDURE IF EXISTS util.tx_start;
DELIMITER $$
$$
@ -8,7 +8,7 @@ $$
* @param tx BOOL es true si existe transacción asociada
*/
CREATE DEFINER=`root`@`localhost` PROCEDURE `util`.`tx_start`(tx BOOL)
CREATE OR REPLACE DEFINER=`root`@`localhost` PROCEDURE `util`.`tx_start`(tx BOOL)
BEGIN
IF tx THEN
START TRANSACTION;