IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 6273


Ignore:
Timestamp:
Jan 31, 2006, 6:45:19 PM (20 years ago)
Author:
jhoblitt
Message:

add rawDetrendExp & rawDetrendImfile tables

File:
1 edited

Legend:

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

    r6261 r6273  
    1717    }
    1818    if (!rawImfileCreateTable(config->database)) {
     19        psError(PS_ERR_UNKNOWN, false, "database access failed");
     20        return false;
     21    }
     22    if (!rawDetrendExpCreateTable(config->database)) {
     23        psError(PS_ERR_UNKNOWN, false, "database access failed");
     24        return false;
     25    }
     26    if (!rawDetrendImfileCreateTable(config->database)) {
    1927        psError(PS_ERR_UNKNOWN, false, "database access failed");
    2028        return false;
     
    95103        return false;
    96104    }
     105    if (!rawDetrendExpDropTable(config->database)) {
     106        psError(PS_ERR_UNKNOWN, false, "database access failed");
     107        return false;
     108    }
     109    if (!rawDetrendImfileDropTable(config->database)) {
     110        psError(PS_ERR_UNKNOWN, false, "database access failed");
     111        return false;
     112    }
    97113    if (!p1PendingExpDropTable(config->database)) {
    98114        psError(PS_ERR_UNKNOWN, false, "database access failed");
Note: See TracChangeset for help on using the changeset viewer.