Changeset 32219
- Timestamp:
- Aug 29, 2011, 6:14:27 PM (15 years ago)
- Location:
- tags/ipp-20110622/ippTools
- Files:
-
- 2 edited
-
share/difftool_pendingcleanuprun.sql (modified) (5 diffs)
-
src/difftool.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tags/ipp-20110622/ippTools/share/difftool_pendingcleanuprun.sql
r26927 r32219 2 2 -- all of this is just to get the camera used for the diff run 3 3 SELECT DISTINCT * FROM 4 (SELECT 4 (SELECT DISTINCT 5 5 diffRun.diff_id, 6 6 rawExp.camera, … … 29 29 diffRun.state = 'goto_scrubbed' OR 30 30 diffRun.state = 'goto_purged') 31 @INNERLIMITS@ 31 32 UNION 32 SELECT 33 SELECT DISTINCT 33 34 diffRun.diff_id, 34 35 rawExp.camera, … … 57 58 diffRun.state = 'goto_scrubbed' OR 58 59 diffRun.state = 'goto_purged') 60 @INNERLIMITS@ 59 61 UNION 60 SELECT 62 SELECT DISTINCT 61 63 diffRun.diff_id, 62 64 rawExp.camera, … … 85 87 diffRun.state = 'goto_scrubbed' OR 86 88 diffRun.state = 'goto_purged') 89 @INNERLIMITS@ 87 90 UNION 88 SELECT 91 SELECT DISTINCT 89 92 diffRun.diff_id, 90 93 rawExp.camera, … … 113 116 diffRun.state = 'goto_scrubbed' OR 114 117 diffRun.state = 'goto_purged') 118 @INNERLIMITS@ 115 119 ) as Foo 116 120 WHERE 1 -
tags/ipp-20110622/ippTools/src/difftool.c
r31435 r32219 2461 2461 psString limitString = psDBGenerateLimitSQL(limit); 2462 2462 psStringAppend(&query, " %s", limitString); 2463 psStringSubstitute(&query,limitString,"@INNERLIMITS@"); 2463 2464 psFree(limitString); 2465 2466 } 2467 else { 2468 psStringSubstitute(&query,NULL,"@INNERLIMITS@"); 2464 2469 } 2465 2470 // fprintf(stderr,"%s",query);
Note:
See TracChangeset
for help on using the changeset viewer.
