Changeset 42579
- Timestamp:
- Jan 10, 2024, 12:37:20 PM (3 years ago)
- Location:
- branches/eam_branches/ipp-20230313/ippTools
- Files:
-
- 3 edited
-
share/xcskytool_result.sql (modified) (1 diff)
-
share/xcskytool_todo.sql (modified) (1 diff)
-
src/xcskytool.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20230313/ippTools/share/xcskytool_result.sql
r42572 r42579 4 4 xcskyRun.workdir, 5 5 xcskyRun.label, 6 xcstackRun.tess_id,7 xcstackRun.skycell_id,6 MIN(xcstackRun.tess_id) as tess_id, -- we implicitly assume that all xcstackRuns used for a xcskyRun have the same tess_id 7 MIN(xcstackRun.skycell_id) as skycell_id, -- and skycell_id 8 8 count(xcstackRun.filter) AS num_filters, 9 TRUNCATE( skycell.radeg/15., 4) ASrahours,10 skycell.radeg,11 skycell.decdeg,12 skycell.glong,13 skycell.glat9 TRUNCATE(MIN(skycell.radeg)/15., 4) as rahours, 10 MIN(skycell.radeg) as radeg, 11 MIN(skycell.decdeg) as decdeg, 12 MIN(skycell.glong) as glong, 13 MIN(skycell.glat) as glat 14 14 FROM xcskyRun 15 15 JOIN xcskyResult USING(xcsky_id) -
branches/eam_branches/ipp-20230313/ippTools/share/xcskytool_todo.sql
r42572 r42579 5 5 xcskyRun.label, 6 6 xcskyRun.state, 7 xcstackRun.tess_id,8 xcstackRun.skycell_id,9 TRUNCATE( skycell.radeg/15., 4) as rahours,10 skycell.radeg,11 skycell.decdeg,12 skycell.glong,13 skycell.glat,7 MIN(xcstackRun.tess_id) as tess_id, -- we implicitly assume that all xcstackRuns used for a xcskyRun have the same tess_id 8 MIN(xcstackRun.skycell_id) as skycell_id, -- and skycell_id 9 TRUNCATE(MIN(skycell.radeg)/15., 4) as rahours, 10 MIN(skycell.radeg) as radeg, 11 MIN(skycell.decdeg) as decdeg, 12 MIN(skycell.glong) as glong, 13 MIN(skycell.glat) as glat, 14 14 xcskyResult.path_base, 15 15 IFNULL(Label.priority, 10000) AS priority -
branches/eam_branches/ipp-20230313/ippTools/src/xcskytool.c
r42574 r42579 116 116 PXOPT_LOOKUP_STR(note, config->args, "-set_note", false, false); 117 117 PXOPT_LOOKUP_TIME(registered, config->args, "-set_registered", false, false); 118 // fprintf (stderr, "%s\n", registered); 118 119 119 120 psMetadata *whereMD = psMetadataAlloc(); … … 333 334 dist_group, 334 335 reduction, 335 registered,336 NULL, // XXX : broken like xcstacktool : is this due to the mysql version? 336 337 note 337 338 )
Note:
See TracChangeset
for help on using the changeset viewer.
