Changeset 18722
- Timestamp:
- Jul 24, 2008, 3:56:45 PM (18 years ago)
- Location:
- trunk/ippMonitor/def
- Files:
-
- 3 edited
-
chipPendingExp.d (modified) (1 diff)
-
chipPendingImfile.d (modified) (2 diffs)
-
chipProcessedExp.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippMonitor/def/chipPendingExp.d
r18373 r18722 5 5 6 6 # limit this table to non-OBJECT types of images 7 WHERE chipRun.state = ' run'7 WHERE chipRun.state = 'new' 8 8 WHERE chipRun.exp_id = rawExp.exp_id 9 9 -
trunk/ippMonitor/def/chipPendingImfile.d
r18340 r18722 1 TABLE chipRun, rawExp 1 TABLE chipRun, rawExp, rawImfile 2 2 TITLE Chip Pending Imfiles 3 FILE chipPending Exp.php3 FILE chipPendingImfile.php 4 4 MENU ipp.science.dat 5 5 6 # limit this table to non-OBJECT types of images 7 WHERE chipRun.state = 'run' 6 # XXX this query does not exclude imfiles already processed (unless the exp is done) 7 # I need to join against chipProcessedImfile and exclude ones where chipProcessedImfile.class_id is not NULL 8 9 # limit this table to OBJECT types of images 10 WHERE chipRun.state = 'new' 8 11 WHERE chipRun.exp_id = rawExp.exp_id 12 WHERE rawImfile.exp_id = rawExp.exp_id 13 9 14 10 15 ARGS ARG1 exp_id=$chipRun.exp_id … … 16 21 FIELD chipRun.exp_id, 5, %d, Exp ID 17 22 FIELD rawExp.exp_name, 5, %s, Exp Name, value, rawImfile.php, ARG1 23 FIELD rawImfile.class_id, 5, %s, Class ID 18 24 FIELD chipRun.chip_id, 7, %d, chip ID 19 25 FIELD chipRun.state, 7, %s, state -
trunk/ippMonitor/def/chipProcessedExp.d
r18373 r18722 5 5 6 6 # limit this table to non-OBJECT types of images 7 WHERE chipRun.state != ' run'7 WHERE chipRun.state != 'new' 8 8 WHERE chipRun.exp_id = rawExp.exp_id 9 9
Note:
See TracChangeset
for help on using the changeset viewer.
