IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 31076


Ignore:
Timestamp:
Mar 28, 2011, 11:53:11 PM (15 years ago)
Author:
watersc1
Message:

Changed how the JOINs function between chipRun and rawExp. Forcing it through chipProcessedImfile seems a bit insane to me, and so switching it to just carrying the exp_id in the USING statement seems to result in a substantial increase in speed. The results appear to be what would be expected.

No clue why this is suddenly an issue.

File:
1 edited

Legend:

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

    r24414 r31076  
    2828JOIN camProcessedExp USING(cam_id)
    2929JOIN chipRun USING(chip_id)
    30 JOIN chipProcessedImfile USING(chip_id)
    31 JOIN rawExp
    32     ON chipProcessedImfile.exp_id = rawExp.exp_id
     30JOIN chipProcessedImfile USING(chip_id,exp_id)
     31JOIN rawExp USING(exp_id)
     32--    ON chipProcessedImfile.exp_id = rawExp.exp_id
    3333LEFT JOIN fakeProcessedImfile
    3434    ON fakeRun.fake_id = fakeProcessedImfile.fake_id
Note: See TracChangeset for help on using the changeset viewer.