IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 9404


Ignore:
Timestamp:
Oct 7, 2006, 5:13:28 PM (20 years ago)
Author:
jhoblitt
Message:

fix idiotic use of .position instead of .det_id

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/detselect.c

    r9403 r9404  
    7272        "SELECT"
    7373        "   detNormalizedImfile.det_id,"
    74         "   detNormalizedImfile.iteration,"
    75         "   detNormalizedImfile.class_id"
     74        "   detNormalizedImfile.iteration"
    7675        " FROM detRun"
    7776        " JOIN detInputExp"
     
    8079        "   ON detRun.position = detInputExp.det_id"
    8180        " JOIN detNormalizedImfile"
    82         "   ON detInputExp.position = detNormalizedImfile.det_id"
     81        "   ON detInputExp.det_id = detNormalizedImfile.det_id"
    8382        "   AND detInputExp.iteration = detNormalizedImfile.iteration"
    8483        " JOIN rawDetrendExp"
    8584        "   ON detInputExp.exp_tag = rawDetrendExp.exp_tag"
    8685        " JOIN detRunSummary"
    87         "   ON detInputExp.position = detRunSummary.det_id"
     86        "   ON detInputExp.det_id = detRunSummary.det_id"
    8887        "   AND detInputExp.iteration = detRunSummary.iteration"
    8988        " WHERE"
Note: See TracChangeset for help on using the changeset viewer.