- Timestamp:
- Nov 2, 2015, 2:57:52 PM (11 years ago)
- Location:
- trunk/ippTools
- Files:
-
- 3 edited
-
share/fftool_summary.sql (modified) (1 diff)
-
src/addtool.c (modified) (3 diffs)
-
src/fftool.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/share/fftool_summary.sql
r36633 r39028 8 8 fullForceRun.sources_path_base, 9 9 'summary' AS dist_component, 10 stackRun.stack_id, 10 11 stackRun.tess_id, 11 12 stackRun.skycell_id, -
trunk/ippTools/src/addtool.c
r38937 r39028 421 421 psStringAppend(&query, " GROUP BY ff_id "); //needs to be checked, but should be fine: want 1 ff summary cmf. 422 422 } 423 psError(PS_ERR_UNKNOWN, false , query);423 psError(PS_ERR_UNKNOWN, false, "query: %s\n", query); 424 424 425 425 psTrace("addtool.c", PS_LOG_INFO,"query: \n\n%s\n\n",query); … … 1199 1199 psMetadata *where = psMetadataAlloc(); 1200 1200 if (multiadd) { 1201 //required, check that they are there 1202 PXOPT_LOOKUP_STR(multiaddlabel, config->args, "-multiaddlabel",true,false); 1203 PXOPT_LOOKUP_STR(stage, config->args, "-stage",true,false); 1204 PXOPT_LOOKUP_S64(stage_id, config->args, "-stage_id",true,false); 1205 //do the where 1201 // NOTE: these tests are not needed because the PXOPT_COPY_* calls below return FALSE on failure to find the item 1202 // required, check that they are there 1203 // PXOPT_LOOKUP_STR(multiaddlabel, config->args, "-multiaddlabel", true, false); 1204 // PXOPT_LOOKUP_STR(stage, config->args, "-stage", true, false); 1205 // PXOPT_LOOKUP_S64(stage_id, config->args, "-stage_id", true, false); 1206 1207 // do the where 1206 1208 PXOPT_COPY_STR(config->args, where, "-multiaddlabel", "addRun.label", "=="); 1207 1209 PXOPT_COPY_STR(config->args, where, "-stage", "addRun.stage","=="); … … 1211 1213 //if not multiadd mode, then do it by add_id 1212 1214 // required, check for add_id 1213 PXOPT_LOOKUP_S64(add_id, config->args, "-add_id",true,false);1215 // PXOPT_LOOKUP_S64(add_id, config->args, "-add_id",true,false); 1214 1216 PXOPT_COPY_S64(config->args, where, "-add_id", "addRun.add_id", "=="); 1215 1217 -
trunk/ippTools/src/fftool.c
r38724 r39028 46 46 static bool exportrunMode(pxConfig *config); 47 47 static bool importrunMode(pxConfig *config); 48 static bool summaryMode(pxConfig *config);49 48 50 49 static bool setfullForceRunState(pxConfig *config, psS64 sky_id, const char *state);
Note:
See TracChangeset
for help on using the changeset viewer.
