- Timestamp:
- Oct 21, 2010, 2:45:13 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20100823/ippTools/src/stacktool.c
r28681 r29515 901 901 psFree(where); 902 902 903 psStringAppend(&query, "\nORDER by priority DESC, stack_id"); 904 903 905 // treat limit == 0 as "no limit" 904 906 if (limit) { … … 982 984 PXOPT_LOOKUP_STR(hostname, config->args, "-hostname", false, false); 983 985 PXOPT_LOOKUP_F32(good_frac, config->args, "-good_frac", false, false); 986 PXOPT_LOOKUP_F64(mjd_obs, config->args, "-mjd_obs", false, false); 984 987 985 988 PXOPT_LOOKUP_STR(ver_pslib, config->args, "-ver_pslib", false, false); … … 1047 1050 hostname, 1048 1051 good_frac, 1052 mjd_obs, 1049 1053 fault, 1050 1054 software_ver, … … 1094 1098 psMetadata *where = psMetadataAlloc(); 1095 1099 PXOPT_COPY_S64(config->args, where, "-stack_id", "stackSumSkyfile.stack_id", "=="); 1096 PXOPT_COPY_STR(config->args, where, "-tess_id", "stackRun.tess_id", " ==");1100 PXOPT_COPY_STR(config->args, where, "-tess_id", "stackRun.tess_id", "LIKE"); 1097 1101 PXOPT_COPY_STR(config->args, where, "-skycell_id", "stackRun.skycell_id", "=="); 1098 1102 PXOPT_COPY_STR(config->args, where, "-filter", "stackRun.filter", "LIKE"); … … 1100 1104 PXOPT_COPY_STR(config->args, where, "-data_group", "stackRun.data_group", "LIKE"); 1101 1105 PXOPT_COPY_S16(config->args, where, "-fault", "stackSumSkyfile.fault", "=="); 1106 PXOPT_COPY_F64(config->args, where, "-mjd_obs_begin", "stackSumSkyfile.mjd_obs", ">="); 1107 PXOPT_COPY_F64(config->args, where, "-mjd_obs_end", "stackSumSkyfile.mjd_obs", "<="); 1108 1102 1109 1103 1110 // The following three selectors are incompatible with the sql so omit them
Note:
See TracChangeset
for help on using the changeset viewer.
