master #2538

Merged
juan merged 9 commits from master into test 2024-06-04 21:05:28 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 35b4255505 - Show all commits

View File

@ -4,7 +4,7 @@ BEGIN
/**
* Deshace los cambios asociados a una transacción.
*
* @param isTx es true si existe transacción asociada
* @param vIsTx es true si existe transacción asociada
*/
IF vIsTx THEN
ROLLBACK;

View File

@ -24,8 +24,8 @@ BEGIN
DECLARE vEvaNotes VARCHAR(255);
DECLARE vDone BOOL;
DECLARE vAuxEntryFk INT;
DECLARE vDoTx BOOLEAN DEFAULT NOT @@in_transaction;
DECLARE vIsRequiredTx CURSOR FOR
DECLARE vIsRequiredTx BOOLEAN DEFAULT NOT @@in_transaction;
DECLARE vRsEntry CURSOR FOR
SELECT e.id
FROM entry e
JOIN travel t ON t.id = e.travelFk