IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 15271


Ignore:
Timestamp:
Oct 9, 2007, 3:29:31 PM (19 years ago)
Author:
jhoblitt
Message:

update

File:
1 edited

Legend:

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

    r15186 r15271  
    11SELECT
    2     magicTree.*
     2    magicTree.*,
     3    -- convert magic_id into a boolean value (1 or 0)
     4    -- note that the type stays a 64 bit int
     5    magicNodeResult.magic_id IS TRUE as done
    36FROM magicTree
     7JOIN magicRun
     8    USING(magic_id)
    49LEFT JOIN magicNodeResult
    510    ON magicTree.magic_id = magicNodeResult.magic_id
    6     AND magicTree.dep = magicNodeResult.node
     11    AND magicTree.node = magicNodeResult.node
    712WHERE
    8     magicNodeResult.node IS NULL
     13    magicRun.state = 'run'
Note: See TracChangeset for help on using the changeset viewer.