IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 35313


Ignore:
Timestamp:
Mar 15, 2013, 1:29:22 PM (13 years ago)
Author:
bills
Message:

show status of requests in state 'preview' too

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tags/ipp-20130307/pstamp/scripts/psstatus

    r30692 r35313  
    8181LEFT JOIN Label USING(label)
    8282    WHERE pstampRequest.state = 'run' or pstampRequest.state ='new'
     83        OR pstampRequest.state = 'preview'
    8384   --     OR pstampRequest.state = 'run.wait'
    8485) as unfinishedReq
     
    8990FROM pstampRequest JOIN pstampJob USING(req_id)
    9091    WHERE (pstampRequest.state = 'run' or pstampRequest.state = 'new'
    91         OR pstampRequest.state = 'run.wait')
     92        OR pstampRequest.state = 'run.wait'
     93        OR pstampRequest.state = 'preview')
    9294    GROUP BY req_id
    9395) as rowCounts
     
    101103    JOIN pstampDependent USING(dep_id)
    102104    WHERE (pstampRequest.state = 'run' or pstampRequest.state = 'new'
     105            OR pstampRequest.state = 'preview'
    103106            OR pstampRequest.state = 'run.wait')
    104107        AND dep_id > 0
Note: See TracChangeset for help on using the changeset viewer.