Changeset 28959 for trunk/ippTools/share
- Timestamp:
- Aug 18, 2010, 7:42:49 PM (16 years ago)
- Location:
- trunk/ippTools/share
- Files:
-
- 5 added
- 3 edited
-
Makefile.am (modified) (3 diffs)
-
disttool_definebyquery_sky.sql (added)
-
disttool_pending_sky.sql (added)
-
disttool_toadvance.sql (modified) (1 diff)
-
staticskytool_export_input.sql (added)
-
staticskytool_export_result.sql (added)
-
staticskytool_export_run.sql (added)
-
staticskytool_result.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/share/Makefile.am
r28941 r28959 153 153 disttool_definebyquery_fake.sql \ 154 154 disttool_definebyquery_raw.sql \ 155 disttool_definebyquery_sky.sql \ 155 156 disttool_definebyquery_stack.sql \ 156 157 disttool_definebyquery_warp.sql \ … … 166 167 disttool_pending_fake.sql \ 167 168 disttool_pending_raw.sql \ 169 disttool_pending_sky.sql \ 168 170 disttool_pending_stack.sql \ 169 171 disttool_pending_warp.sql \ … … 328 330 staticskytool_definebyquery_select.sql \ 329 331 staticskytool_definebyquery_inputs.sql \ 332 staticskytool_export_run.sql \ 333 staticskytool_export_input.sql \ 334 staticskytool_export_result.sql \ 330 335 staticskytool_inputs.sql \ 331 336 staticskytool_todo.sql \ -
trunk/ippTools/share/disttool_toadvance.sql
r28733 r28959 240 240 AND distComponent.fault = 0 241 241 UNION 242 -- staticsky stage 243 -- NOTE this assumes that there is only one component per staticskyRun 244 -- (one skycell) 245 SELECT 246 distRun.dist_id, 247 stage, 248 stage_id, 249 outroot, 250 label, 251 clean 252 FROM distRun 253 JOIN staticskyResult on stage_id = sky_id 254 LEFT JOIN distComponent 255 ON distRun.dist_id = distComponent.dist_id 256 WHERE 257 distRun.state = 'new' 258 AND distRun.fault = 0 259 AND distRun.stage = 'sky' 260 AND distComponent.component IS NOT NULL 261 AND distComponent.fault = 0 262 UNION 242 263 -- SSdiff stage 243 264 SELECT -
trunk/ippTools/share/staticskytool_result.sql
r28091 r28959 1 SELECT 1 SELECT DISTINCT 2 2 staticskyResult.*, 3 3 staticskyRun.state, 4 staticskyRun.tess_id,5 staticskyRun.skycell_id,6 staticskyRun.filter,7 4 staticskyRun.workdir, 8 5 staticskyRun.label, 6 stackRun.tess_id, 7 stackRun.skycell_id, 8 stackRun.filter 9 9 FROM staticskyRun 10 JOIN staticskyResult 11 USING(stack_id) 10 JOIN staticskyResult USING(sky_id) 11 JOIN staticskyInput USING(sky_id) 12 JOIN stackRun using(stack_id)
Note:
See TracChangeset
for help on using the changeset viewer.
