Changeset 14065 for trunk/ippTools/share
- Timestamp:
- Jul 6, 2007, 5:42:07 PM (19 years ago)
- Location:
- trunk/ippTools/share
- Files:
-
- 1 deleted
- 3 edited
-
Makefile.am (modified) (1 diff)
-
chiptool_completely_processed_exp.sql (modified) (2 diffs)
-
chiptool_pendingimfile.sql (modified) (2 diffs)
-
chiptool_queuerawimfile.sql (deleted)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/share/Makefile.am
r14059 r14065 9 9 chiptool_pendingimfile.sql \ 10 10 chiptool_processedimfile.sql \ 11 chiptool_queuerawimfile.sql \12 11 detselect_search.sql \ 13 12 detselect_select.sql \ -
trunk/ippTools/share/chiptool_completely_processed_exp.sql
r14058 r14065 2 2 SELECT DISTINCT 3 3 chip_id, 4 exp_id, 4 5 state, 5 6 workdir, … … 15 16 chipProcessedImfile.class_id 16 17 FROM chipRun 17 JOIN chipInputImfile18 USING(chip_id)19 JOIN rawExp20 ON chipInputImfile.exp_id = rawExp.exp_id21 18 JOIN rawImfile 22 ON rawExp.exp_id = rawImfile.exp_id19 USING(exp_id) 23 20 LEFT JOIN chipProcessedImfile 24 ON chip InputImfile.chip_id = chipProcessedImfile.chip_id25 AND chipInputImfile.exp_id = chipProcessedImfile.exp_id26 AND chipInputImfile.class_id = chipProcessedImfile.class_id21 ON chipRun.chip_id = chipProcessedImfile.chip_id 22 AND rawImfile.exp_id = chipProcessedImfile.exp_id 23 AND rawImfile.class_id = chipProcessedImfile.class_id 27 24 WHERE 28 25 chipRun.state = 'run' 29 26 AND chipProcessedImfile.fault = 0 30 27 GROUP BY 31 chip InputImfile.chip_id,32 chip InputImfile.exp_id28 chipRun.chip_id, 29 chipRun.exp_id 33 30 HAVING COUNT(rawImfile.class_id) = COUNT(chipProcessedImfile.class_id) 34 31 ) as Foo -
trunk/ippTools/share/chiptool_pendingimfile.sql
r14025 r14065 1 1 SELECT 2 2 chipRun.*, 3 chipInputImfile.exp_id, 4 chipInputImfile.class_id, 3 rawImfile.class_id, 5 4 rawImfile.uri, 6 5 rawExp.exp_tag, … … 10 9 rawExp.filelevel 11 10 FROM chipRun 12 JOIN chipInputImfile 13 USING(chip_id) 11 JOIN rawExp 12 USING(exp_id) 13 JOIN rawImfile 14 USING(exp_id) 14 15 LEFT JOIN chipProcessedImfile 15 ON chipInputImfile.chip_id = chipProcessedImfile.chip_id 16 AND chipInputImfile.exp_id = chipProcessedImfile.exp_id 17 AND chipInputImfile.class_id = chipProcessedImfile.class_id 18 JOIN rawImfile 19 ON chipInputImfile.exp_id = rawImfile.exp_id 20 AND chipInputImfile.class_id = rawImfile.class_id 21 JOIN rawExp 22 ON rawImfile.exp_id = rawExp.exp_id 16 ON chipRun.chip_id = chipProcessedImfile.chip_id 17 AND rawImfile.exp_id = chipProcessedImfile.exp_id 18 AND rawImfile.class_id = chipProcessedImfile.class_id 23 19 LEFT JOIN chipMask 24 20 ON chipRun.label = chipMask.label
Note:
See TracChangeset
for help on using the changeset viewer.
