IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 22, 2009, 4:48:49 PM (17 years ago)
Author:
watersc1
Message:

New sql files to correctly select out files that are pending or done
with cleanup. This returns files marked as purged and scrubbed as
well as simpled cleaned.

Typo fixes in ipp_cleanup.pl .

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/czw_branch/cleanup/ippTools/share/dettool_pendingcleanup_normalizedexp.sql

    r19092 r24902  
    66    USING(det_id,iteration)
    77WHERE
    8     detRunSummary.data_state = 'goto_cleaned'
    9 AND detNormalizedExp.data_state = 'full'
     8    ((detRunSummary.data_state = 'goto_cleaned'
     9      AND detNormalizedExp.data_state = 'full')
     10     OR (detRunSummary.data_state = 'goto_scrubbed'
     11      AND detNormalizedExp.data_state = 'full')
     12     OR (detRunSummary.data_state = 'goto_purged'
     13      AND detNormalizedExp.data_state = 'full')
     14     OR detNormalizedExp.data_state = 'goto_cleaned'
     15     OR detNormalizedExp.data_state = 'goto_scrubbed'
     16     OR detNormalizedExp.data_state = 'goto_purged')
     17
Note: See TracChangeset for help on using the changeset viewer.