Changeset 36432 for tags/ipp-20130712
- Timestamp:
- Jan 8, 2014, 12:23:27 PM (13 years ago)
- Location:
- tags/ipp-20130712/ippTools
- Files:
-
- 2 edited
-
share/chiptool_pendingcleanuprun.sql (modified) (1 diff, 1 prop)
-
src/chiptool.c (modified) (2 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
tags/ipp-20130712/ippTools/share/chiptool_pendingcleanuprun.sql
- Property svn:mergeinfo set to
r34766 r36432 4 4 rawExp.exp_tag, 5 5 chipRun.state, 6 chipRun.workdir 6 chipRun.workdir, 7 chipRun.label, 8 IFNULL(Label.priority, 10000) AS priority 7 9 FROM chipRun 8 10 JOIN rawExp 9 11 USING (exp_id) 12 LEFT JOIN Label ON chipRun.label = Label.label 10 13 WHERE 11 14 (chipRun.state = 'goto_cleaned' OR chipRun.state = 'goto_scrubbed' OR chipRun.state = 'goto_purged') -
tags/ipp-20130712/ippTools/src/chiptool.c
- Property svn:mergeinfo set to
r35789 r36432 1255 1255 1256 1256 psMetadata *where = psMetadataAlloc(); 1257 pxAddLabelSearchArgs (config, where, "-label", " label", "==");1257 pxAddLabelSearchArgs (config, where, "-label", "chipRun.label", "=="); 1258 1258 1259 1259 psString query = pxDataGet("chiptool_pendingcleanuprun.sql"); … … 1269 1269 } 1270 1270 psFree(where); 1271 1272 psStringAppend(&query, "\nORDER BY priority DESC, chip_id"); 1271 1273 1272 1274 // treat limit == 0 as "no limit"
Note:
See TracChangeset
for help on using the changeset viewer.
