Debug compression service

This commit is contained in:
2023-06-27 14:29:56 +02:00
parent 6cd98693c3
commit eb626db9c2
4 changed files with 7 additions and 1 deletions

View File

@@ -30,6 +30,8 @@ file_bw_avg REAL NOT NULL DEFAULT 0.0,
file_data_vol_total REAL NOT NULL DEFAULT 0.0,
UNIQUE (job_id, cluster, start_time));
UPDATE job SET job_state='cancelled' WHERE job_state='canceled';
INSERT INTO job_new SELECT * FROM job;
DROP TABLE job;
ALTER TABLE job_new RENAME TO job;