Changeset 23717
- Timestamp:
- Apr 6, 2009, 3:15:05 PM (17 years ago)
- Location:
- trunk/ippTools
- Files:
-
- 4 edited
-
share/disttool_pendingcomponent.sql (modified) (7 diffs)
-
share/disttool_toadvance.sql (modified) (6 diffs)
-
src/disttool.c (modified) (1 diff)
-
src/disttoolConfig.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/share/disttool_pendingcomponent.sql
r23700 r23717 13 13 NULL as state, 14 14 NULL as data_state, 15 0 as quality, 15 16 distRun.no_magic, 16 17 rawImfile.magicked … … 60 61 chipRun.state, 61 62 chipProcessedImfile.data_state, 63 0 as quality, 62 64 distRun.no_magic, 63 65 chipProcessedImfile.magicked … … 89 91 camRun.state, 90 92 NULL, 93 0 as quality, 91 94 distRun.no_magic, 92 95 chipProcessedImfile.magicked … … 120 123 fakeRun.state, 121 124 NULL, 125 0 as quality, 122 126 distRun.no_magic, 123 127 0 … … 150 154 warpRun.state, 151 155 warpSkyfile.data_state, 156 warpSkyfile.quality, 152 157 distRun.no_magic, 153 158 warpSkyfile.magicked … … 184 189 -- diffSkyfile.data_state, 185 190 'full' AS data_state, 191 diffSkyfile.quality, 186 192 distRun.no_magic, 187 193 diffSkyfile.magicked … … 215 221 -- stackSumSkyfile.data_state, 216 222 'full' AS data_state, 223 0 as quality, 217 224 1 AS no_magic, 218 225 0 AS magicked -
trunk/ippTools/share/disttool_toadvance.sql
r23688 r23717 3 3 stage, 4 4 stage_id, 5 outroot 5 outroot, 6 label 6 7 FROM 7 8 ( … … 11 12 stage, 12 13 stage_id, 13 outroot 14 outroot, 15 label 14 16 FROM distRun 15 17 JOIN rawImfile ON stage_id = rawImfile.exp_id … … 33 35 stage, 34 36 stage_id, 35 outroot 37 outroot, 38 label 36 39 FROM distRun 37 40 JOIN chipProcessedImfile ON stage_id = chipProcessedImfile.chip_id … … 55 58 stage, 56 59 stage_id, 57 outroot 60 outroot, 61 label 58 62 FROM distRun 59 63 JOIN warpSkyfile on stage_id = warp_id … … 79 83 stage, 80 84 stage_id, 81 outroot 85 outroot, 86 label 82 87 FROM distRun 83 88 JOIN diffSkyfile … … 103 108 stage, 104 109 stage_id, 105 outroot 110 outroot, 111 label 106 112 FROM distRun 107 113 JOIN stackSumSkyfile on stage_id = stack_id -
trunk/ippTools/src/disttool.c
r23688 r23717 424 424 psMetadata *where = psMetadataAlloc(); 425 425 PXOPT_COPY_S64(config->args, where, "-dist_id", "dist_id", "=="); 426 PXOPT_COPY_STR(config->args, where, "-label", "label", "=="); 426 427 427 428 PXOPT_LOOKUP_U64(limit, config->args, "-limit", false, false); -
trunk/ippTools/src/disttoolConfig.c
r23688 r23717 100 100 psMetadata *toadvanceArgs = psMetadataAlloc(); 101 101 psMetadataAddS64(toadvanceArgs, PS_LIST_TAIL, "-dist_id", 0, "define dist_id", 0); 102 psMetadataAddStr(toadvanceArgs, PS_LIST_TAIL, "-label", 0, "limit updates to label", NULL); 102 103 psMetadataAddU64(toadvanceArgs, PS_LIST_TAIL, "-limit", 0, "limit result set to N items", 0); 103 104 psMetadataAddBool(toadvanceArgs, PS_LIST_TAIL, "-simple", 0, "use the simple output format", false);
Note:
See TracChangeset
for help on using the changeset viewer.
