IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 4, 2010, 10:50:29 AM (16 years ago)
Author:
bills
Message:

Add table Label which through priority column may be used to order
items pending for processing.
Implement usage of this table in the pstamptool pending modes and
chiptool -pendingimfile.
Various other postage stamp changes including adding pstampDependent.outdir

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/share/chiptool_pendingimfile.sql

    r27738 r27856  
    1010    rawExp.camera,
    1111    rawExp.telescope,
    12     rawExp.filelevel
     12    rawExp.filelevel,
     13    IFNULL(Label.priority, 10000) AS priority
    1314FROM chipRun
    1415JOIN rawExp
     
    2526LEFT JOIN chipMask
    2627    ON chipRun.label = chipMask.label
     28LEFT JOIN Label ON chipRun.label = Label.label
    2729WHERE
    2830    ((chipRun.state = 'new'
     
    3537    AND chipProcessedImfile.data_state = 'update'
    3638    AND chipProcessedImfile.fault = 0))
     39    AND (Label.active OR Label.active IS NULL)
Note: See TracChangeset for help on using the changeset viewer.