Merge branch 'dev' into 7654-entry_splitByShelvingCreateColumn
gitea/salix/pipeline/pr-dev There was a failure building this commit
Details
gitea/salix/pipeline/pr-dev There was a failure building this commit
Details
This commit is contained in:
commit
58fab284f4
|
@ -51399,9 +51399,9 @@ BEGIN
|
||||||
SELECT (pc.maxNotReadyCollections - COUNT(*)) <= 0
|
SELECT (pc.maxNotReadyCollections - COUNT(*)) <= 0
|
||||||
INTO vHasTooMuchCollections
|
INTO vHasTooMuchCollections
|
||||||
FROM productionConfig pc
|
FROM productionConfig pc
|
||||||
LEFT JOIN tCollection ON TRUE;
|
LEFT JOIN tmp.collection ON TRUE;
|
||||||
|
|
||||||
DROP TEMPORARY TABLE tCollection;
|
DROP TEMPORARY TABLE tmp.collection;
|
||||||
|
|
||||||
IF vHasTooMuchCollections THEN
|
IF vHasTooMuchCollections THEN
|
||||||
CALL util.throw('Hay colecciones pendientes');
|
CALL util.throw('Hay colecciones pendientes');
|
||||||
|
@ -51478,9 +51478,9 @@ BEGIN
|
||||||
* @param vWorkerFk id del worker.
|
* @param vWorkerFk id del worker.
|
||||||
* @table Devuelve tabla temporal con las colecciones pendientes
|
* @table Devuelve tabla temporal con las colecciones pendientes
|
||||||
*/
|
*/
|
||||||
DROP TEMPORARY TABLE IF EXISTS tCollection;
|
DROP TEMPORARY TABLE IF EXISTS tmp.collection;
|
||||||
|
|
||||||
CREATE TEMPORARY TABLE tCollection
|
CREATE TEMPORARY TABLE tmp.collection
|
||||||
SELECT c.id collectionFk,
|
SELECT c.id collectionFk,
|
||||||
date(c.created) created,
|
date(c.created) created,
|
||||||
COUNT(DISTINCT tc.ticketFk) ticketTotalCount
|
COUNT(DISTINCT tc.ticketFk) ticketTotalCount
|
||||||
|
@ -51499,7 +51499,7 @@ BEGIN
|
||||||
GROUP BY c.id
|
GROUP BY c.id
|
||||||
HAVING COUNT(*) > COUNT(DISTINCT st.id);
|
HAVING COUNT(*) > COUNT(DISTINCT st.id);
|
||||||
|
|
||||||
SELECT * FROM tCollection;
|
SELECT * FROM tmp.collection;
|
||||||
END ;;
|
END ;;
|
||||||
DELIMITER ;
|
DELIMITER ;
|
||||||
/*!50003 SET sql_mode = @saved_sql_mode */ ;
|
/*!50003 SET sql_mode = @saved_sql_mode */ ;
|
||||||
|
|
Loading…
Reference in New Issue