Changeset 19527
- Timestamp:
- Sep 11, 2008, 3:33:27 PM (18 years ago)
- Location:
- trunk/ippTools/share
- Files:
-
- 4 edited
-
chiptool_change_exp_state.sql (modified) (1 diff)
-
chiptool_change_imfile_data_state.sql (modified) (1 diff)
-
chiptool_pendingcleanupimfile.sql (modified) (1 diff)
-
chiptool_pendingcleanuprun.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/share/chiptool_change_exp_state.sql
r19334 r19527 1 -- change state of chipRun from goto_cleaned to cleaned or goto_purged to purged 2 -- when all of the consituant imfiles are in the rgith state 3 -- arguments are new state (cleaned or purged) chip_id and new state again for 4 -- the chipProcessedImfile sub query 1 5 UPDATE chipRun 2 6 SET state = '%s' -
trunk/ippTools/share/chiptool_change_imfile_data_state.sql
r19334 r19527 1 -- handle changes in data_state. Used for the modes tocleanedimfile and topurgedimfile 2 -- args are new data_state, chip_id, class_id, and current expected state for chipRun 1 3 UPDATE chipProcessedImfile 2 4 SET -
trunk/ippTools/share/chiptool_pendingcleanupimfile.sql
r19334 r19527 13 13 USING(chip_id) 14 14 WHERE 15 chipRun.state = 'goto_cleaned' 16 AND chipProcessedImfile.data_state = 'full' 15 ((chipRun.state = 'goto_cleaned' AND chipProcessedImfile.data_state = 'full') 16 OR 17 (chipRun.state = 'goto_purged' AND chipProcessedImfile.data_state != 'purged')) -
trunk/ippTools/share/chiptool_pendingcleanuprun.sql
r18366 r19527 7 7 USING (exp_id) 8 8 WHERE 9 chipRun.state = 'goto_cleaned'9 (chipRun.state = 'goto_cleaned' OR chipRun.state = 'goto_purged')
Note:
See TracChangeset
for help on using the changeset viewer.
