Zmiany pomiędzy wersją 116 and wersją 117 dla DeployerGuide/Customization/ProcessAutomation

Pokaż
Ignoruj:
Data i czas:
01/04/17 17:00:53 (7 years temu)
Autor:
mkrolikowski (IP: 193.0.209.17)
Komentarz:

--

Legend:

Bez zmian
Dodane
Usunięte
Zmienione
  • DeployerGuide/Customization/ProcessAutomation

    v116 v117  
    211211 
    212212{{{ 
    213 delete from stages where sop_id = any( 
    214 select sop_id from stages s join procedures p using(procid) where NOT (s.is_act OR s.is_fix) AND (p.comple OR p.cancel)  order by p.adddat asc  ) 
    215 }}} 
    216  
     213DELETE 
     214FROM stages 
     215WHERE sop_id = any 
     216    (SELECT sop_id 
     217     FROM stages s 
     218     JOIN procedures p USING(procid) 
     219     WHERE NOT (s.is_act 
     220                OR s.is_fix) 
     221       AND (p.comple 
     222            OR p.cancel) 
     223     ORDER BY p.adddat ASC) 
     224}}} 
     225