IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 21, 2015, 8:13:08 AM (11 years ago)
Author:
bills
Message:

Minor changes to staticskytool to support "updating" runs.
Add path_base to -todo mode. This will list NULL for new runs and
the existing path base for runs in state update.
Add -set_quality option to -updateresult

File:
1 edited

Legend:

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

    r34726 r38296  
    1212    skycell.glong,
    1313    skycell.glat,
     14    staticskyResult.path_base,
    1415    IFNULL(Label.priority, 10000) AS priority
    1516FROM staticskyRun
     
    2021LEFT JOIN Label ON staticskyRun.label = Label.label
    2122WHERE
    22    (staticskyRun.state = 'new' AND staticskyResult.sky_id IS NULL)
     23   ((staticskyRun.state = 'new' AND staticskyResult.sky_id IS NULL)
     24    OR (staticskyRun.state = 'update' AND staticskyResult.fault = 0))
     25   
    2326   AND (Label.active OR Label.active IS NULL)
    2427
Note: See TracChangeset for help on using the changeset viewer.