Changeset 28031 for branches/czw_branch/20100427/ippTools
- Timestamp:
- May 19, 2010, 2:11:08 PM (16 years ago)
- Location:
- branches/czw_branch/20100427
- Files:
-
- 4 edited
-
. (modified) (1 prop)
-
ippTools/share/chiptool_setimfiletoupdate.sql (modified) (2 diffs)
-
ippTools/share/difftool_setskyfiletoupdate.sql (modified) (2 diffs)
-
ippTools/share/warptool_setskyfiletoupdate.sql (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/czw_branch/20100427
- Property svn:mergeinfo changed
/trunk merged: 28007-28008,28010,28013-28016,28019-28027
- Property svn:mergeinfo changed
-
branches/czw_branch/20100427/ippTools/share/chiptool_setimfiletoupdate.sql
r27391 r28031 1 1 UPDATE chipRun 2 2 JOIN chipProcessedImfile USING(chip_id) 3 LEFT JOIN magicDSRun ON (stage_id = chip_id AND stage = 'chip') 4 LEFT JOIN magicDSFile ON (magicDSRun.magic_ds_id = magicDSFile.magic_ds_id 5 AND component = class_id) 3 6 SET chipRun.state = 'update', 4 7 chipProcessedImfile.data_state = 'update' … … 7 10 AND (chipRun.state = 'cleaned' OR chipRun.state = 'update') 8 11 AND (chipProcessedImfile.data_state = 'cleaned') 12 -- don't queue update if the associated magicDSFile exists 13 AND (chipRun.magicked = 0 14 OR (magicDSRun.state = 'cleaned' OR magicDSRun.state = 'new') 15 AND magicDSFile.component IS NULL) -
branches/czw_branch/20100427/ippTools/share/difftool_setskyfiletoupdate.sql
r28017 r28031 1 1 UPDATE diffRun 2 2 JOIN diffSkyfile USING(diff_id) 3 LEFT JOIN magicDSRun ON (stage_id = diff_id AND stage = 'diff') 4 LEFT JOIN magicDSFile ON (magicDSRun.magic_ds_id = magicDSFile.magic_ds_id 5 AND component = skycell_id) 3 6 SET diffRun.state = 'update', 4 7 diffSkyfile.data_state = 'update' … … 7 10 AND (diffRun.state = 'cleaned' OR diffRun.state = 'update') 8 11 AND (diffSkyfile.data_state = 'cleaned') 12 -- don't queue update if the associated magicDSFile still exists 13 AND (diffRun.magicked = 0 14 OR (magicDSRun.state = 'cleaned' OR magicDSRun.state = 'new') 15 AND magicDSFile.component IS NULL) -
branches/czw_branch/20100427/ippTools/share/warptool_setskyfiletoupdate.sql
r27737 r28031 1 1 UPDATE warpRun 2 2 JOIN warpSkyfile USING(warp_id) 3 LEFT JOIN magicDSRun ON (stage_id = warp_id AND stage = 'warp') 4 LEFT JOIN magicDSFile ON (magicDSRun.magic_ds_id = magicDSFile.magic_ds_id 5 AND component = skycell_id) 3 6 SET warpRun.state = 'update', 4 7 warpSkyfile.data_state = 'update' … … 7 10 AND (warpRun.state = 'cleaned' OR warpRun.state = 'update') 8 11 AND (warpSkyfile.data_state = 'cleaned') 12 AND (warpRun.magicked = 0 13 OR (magicDSRun.state = 'cleaned' OR magicDSRun.state = 'new') 14 AND magicDSFile.component IS NULL)
Note:
See TracChangeset
for help on using the changeset viewer.
