Edit button locate, delete, group header

This commit is contained in:
ivan-pelly
2026-04-10 17:52:52 -07:00
parent b287276ec0
commit 0036e25b9c
25 changed files with 629 additions and 82 deletions
@@ -0,0 +1,12 @@
DELIMITER ;;
CREATE DEFINER=`root`@`%` PROCEDURE `sp_Benchmark_Delete`(IN p_id_benchmark CHAR(36))
BEGIN
-- Remove progress-event/benchmark associations
DELETE FROM progress_event_benchmark
WHERE id_benchmark = p_id_benchmark;
-- Remove the benchmark itself
DELETE FROM benchmark
WHERE id_benchmark = p_id_benchmark;
SELECT ROW_COUNT() AS rows_affected;
END;;
DELIMITER ;