Changeset 33113
- Timestamp:
- Jan 17, 2012, 4:21:07 PM (14 years ago)
- Location:
- tags/ipp-20111222/ippTools/src
- Files:
-
- 2 edited
-
chiptool.c (modified) (1 diff, 1 prop)
-
warptool.c (modified) (1 diff, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
tags/ipp-20111222/ippTools/src/chiptool.c
- Property svn:mergeinfo set to
r32653 r33113 2027 2027 psFree(setHook); 2028 2028 psFree(query); 2029 // if we are updating a whole chipRun set lingering chips with poor quality to full data_state 2030 if (!class_id) { 2031 query = "UPDATE chipProcessedImfile SET data_state ='full', fault = 0 WHERE chip_id = %" PRId64 " AND quality != 0 AND (data_state ='cleaned' OR data_state = 'update')"; 2032 2033 if (!p_psDBRunQueryF(config->dbh, query, chip_id)) { 2034 psError(PS_ERR_UNKNOWN, false, "database error"); 2035 return false; 2036 } 2037 } 2029 2038 2030 2039 return true; -
tags/ipp-20111222/ippTools/src/warptool.c
- Property svn:mergeinfo set to
r32551 r33113 2581 2581 psFree(query); 2582 2582 2583 return true; 2584 } 2583 if (!skycell_id) { 2584 // If we are updateing a whole warpRun set skycells with bad quality to 'full' 2585 query = "UPDATE warpSkyfile SET data_state ='full', fault = 0 WHERE warp_id = %" PRId64 " AND quality != 0 AND (data_state != 'full')"; 2586 if (!p_psDBRunQueryF(config->dbh, query, warp_id)) { 2587 psError(PS_ERR_UNKNOWN, false, "database error"); 2588 return false; 2589 } 2590 } 2591 2592 return true; 2593 }
Note:
See TracChangeset
for help on using the changeset viewer.
