IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 25418 for trunk/ippTools/share


Ignore:
Timestamp:
Sep 16, 2009, 9:44:29 AM (17 years ago)
Author:
bills
Message:

Store the size in bytes and md5sum of the Compressed raw image files
in pzDownloadImfile. Propagate the values to rawImfile so that they are
available for checking.
(summitImfile has the parameters of the files before they are compressed)

Location:
trunk/ippTools/share
Files:
2 edited

Legend:

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

    r25382 r25418  
    5858    epoch TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
    5959    hostname VARCHAR(64),
     60    bytes INT,
     61    md5sum VARCHAR(32),
    6062    PRIMARY KEY(exp_name, camera, telescope, class, class_id),
    6163    KEY(fault),
     
    9496    uri VARCHAR(255),
    9597    epoch TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
     98    bytes INT,
     99    md5sum VARCHAR(32),
    96100    PRIMARY KEY(exp_id, tmp_class_id),
    97101    FOREIGN KEY(exp_id) REFERENCES newExp(exp_id)
     
    237241    raw_image_id BIGINT AUTO_INCREMENT,
    238242    magicked BIGINT,
     243    bytes INT,
     244    md5sum VARCHAR(32),
    239245    PRIMARY KEY(exp_id, class_id),
    240246    KEY(tmp_class_id),
  • trunk/ippTools/share/regtool_pendingimfile.sql

    r17573 r25418  
    66    newExp.workdir,
    77    newImfile.tmp_class_id,
    8     newImfile.uri
     8    newImfile.uri,
     9    newImfile.bytes,
     10    newImfile.md5sum
    911FROM newImfile
    1012JOIN newExp
Note: See TracChangeset for help on using the changeset viewer.