Changeset 43096
- Timestamp:
- Sep 22, 2026, 3:10:37 PM (41 hours ago)
- Location:
- branches/eam_branches/ipp-pstamp-20260421/ippTools
- Files:
-
- 2 edited
-
share/difftool_pendingcleanuprun.sql (modified) (5 diffs)
-
src/difftool.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-pstamp-20260421/ippTools/share/difftool_pendingcleanuprun.sql
r34766 r43096 1 1 -- does this result in too many entries (one for each diffInputSkyfile?) 2 2 -- all of this is just to get the camera used for the diff run 3 SELECT DISTINCT* FROM4 ( SELECT DISTINCT3 SELECT * FROM 4 ((SELECT DISTINCT 5 5 diffRun.diff_id, 6 6 rawExp.camera, … … 31 31 diffRun.state = 'goto_scrubbed' OR 32 32 diffRun.state = 'goto_purged') 33 @INNERLIMITS@ 33 @INNERLIMITS@) 34 34 UNION 35 SELECT DISTINCT35 (SELECT DISTINCT 36 36 diffRun.diff_id, 37 37 rawExp.camera, … … 62 62 diffRun.state = 'goto_scrubbed' OR 63 63 diffRun.state = 'goto_purged') 64 @INNERLIMITS@ 64 @INNERLIMITS@) 65 65 UNION 66 SELECT DISTINCT66 (SELECT DISTINCT 67 67 diffRun.diff_id, 68 68 rawExp.camera, … … 93 93 diffRun.state = 'goto_scrubbed' OR 94 94 diffRun.state = 'goto_purged') 95 @INNERLIMITS@ 95 @INNERLIMITS@) 96 96 UNION 97 SELECT DISTINCT97 (SELECT DISTINCT 98 98 diffRun.diff_id, 99 99 rawExp.camera, … … 124 124 diffRun.state = 'goto_scrubbed' OR 125 125 diffRun.state = 'goto_purged') 126 @INNERLIMITS@ 126 @INNERLIMITS@) 127 127 ) as Foo 128 128 WHERE 1 -
branches/eam_branches/ipp-pstamp-20260421/ippTools/src/difftool.c
r43013 r43096 2883 2883 if (limit) { 2884 2884 psString limitString = psDBGenerateLimitSQL(limit); 2885 psStringAppend(&query, " %s", limitString);2886 psStringSubstitute(&query, limitString,"@INNERLIMITS@");2885 // psStringAppend(&query, " %s", limitString); 2886 psStringSubstitute(&query, limitString, "@INNERLIMITS@"); 2887 2887 psFree(limitString); 2888 2888 2889 2889 } 2890 2890 else { 2891 psStringSubstitute(&query ,NULL,"@INNERLIMITS@");2891 psStringSubstitute(&query ,NULL, "@INNERLIMITS@"); 2892 2892 } 2893 2893 // fprintf(stderr,"%s",query);
Note:
See TracChangeset
for help on using the changeset viewer.
