IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 21434


Ignore:
Timestamp:
Feb 10, 2009, 11:03:02 AM (17 years ago)
Author:
bills
Message:

add sql to populate chipImfile and warpImfile tables to changes.txt

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dbconfig/changes.txt

    r21310 r21434  
    823823ENGINE=innodb DEFAULT CHARSET=latin1;
    824824
    825 
     825INSERT INTO chipImfile
     826   SELECT chip_id, class_id, 0
     827   FROM rawImfile JOIN chipRun USING(exp_id)
     828   LEFT JOIN chipImfile USING(chip_id, class_id)
     829   WHERE chipImfile.class_id IS NULL;
     830
     831INSERT INTO warpImfile
     832    SELECT DISTINCT warp_id, skycell_id, 0
     833    FROM warpSkyCellMap LEFT JOIN warpImfile USING(warp_id, skycell_id)
     834    WHERE warpImfile.skycell_id IS NULL;
     835
     836
     837
Note: See TracChangeset for help on using the changeset viewer.