IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 28984


Ignore:
Timestamp:
Aug 20, 2010, 10:53:53 AM (16 years ago)
Author:
eugene
Message:

changes from trunk

Location:
branches/eam_branches/ipp-20100621
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20100621/DataStoreServer/scripts/dsreg

    r28794 r28984  
    332332
    333333                    if ( !-e $src or !-r $src) {
    334                         print STDERR "file $src does not exist or is not accessible\n";
     334                        print STDERR "source file $src does not exist or is not accessible\n";
    335335                        exit $PS_EXIT_SYS_ERROR;
    336336                    }
     337                    if ( -e $dest ) {
     338                        print STDERR "destination $dest already exists removing\n";
     339                        if (! unlink $dest ) {
     340                            print STDERR "failed trying to unlink $dest\n";
     341                            exit $PS_EXIT_SYS_ERROR;
     342                        }
     343                    }
     344
    337345                    if ($linkfiles) {
    338346                        if (! symlink $src, $dest) {
  • branches/eam_branches/ipp-20100621/dbconfig/changes.txt

    r28794 r28984  
    19391939    FOREIGN KEY(sass_id) REFERENCES stackAssociation(sass_id)
    19401940) ENGINE=innodb DEFAULT CHARSET=latin1;
     1941
     1942-- Fixing summary tables;
     1943
     1944ALTER TABLE warpSummary DROP PRIMARY KEY, ADD PRIMARY KEY (warp_id, projection_cell);
     1945ALTER TABLE diffSummary DROP PRIMARY KEY, ADD PRIMARY KEY (diff_id, projection_cell);
     1946ALTER TABLE stackSummary DROP PRIMARY KEY, ADD PRIMARY KEY (sass_id, projection_cell);
Note: See TracChangeset for help on using the changeset viewer.