IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 18203


Ignore:
Timestamp:
Jun 19, 2008, 1:59:32 PM (18 years ago)
Author:
jhoblitt
Message:

invert exposure sort order such that the newest data (by dateobs) is downloaded
first

Location:
trunk/ippTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/share/pztool_pendingimfile.sql

    r16627 r18203  
    1919        AND pzDownloadImfile.class_id IS NULL
    2020    ORDER BY
    21         summitExp.dateobs
     21        summitExp.dateobs DESC
    2222) as Foo
  • trunk/ippTools/src/pztool.c

    r17925 r18203  
    225225    }
    226226
     227    psStringAppend(&query, " ORDER BY summitExp.dateobs DESC");
     228
    227229    // treat limit == 0 as "no limit"
    228230    if (limit) {
     
    295297            psFree(whereClause);
    296298        }
     299
     300        psStringAppend(&query, " ORDERY BY summitExp.dateobs DESC");
    297301
    298302        // request the full "limit" from each known camera and throw away any
Note: See TracChangeset for help on using the changeset viewer.