IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 23, 2007, 4:28:07 PM (19 years ago)
Author:
jhoblitt
Message:

VERSION 1.1.11

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippdb/tests/dbsetup.c

    r11988 r12026  
    4646    rawImfileCreateTable(dbh);
    4747
    48     p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p1PendingExp");
    49     p1PendingExpCreateTable(dbh);
     48    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS guidePendingExp");
     49    guidePendingExpCreateTable(dbh);
    5050
    51     p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p2PendingExp");
    52     p2PendingExpCreateTable(dbh);
     51    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS chipPendingExp");
     52    chipPendingExpCreateTable(dbh);
    5353
    54     p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p2PendingImfile");
    55     p2PendingImfileCreateTable(dbh);
     54    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS chipPendingImfile");
     55    chipPendingImfileCreateTable(dbh);
    5656
    57     p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p2ProcessedExp");
    58     p2ProcessedExpCreateTable(dbh);
     57    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS chipProcessedExp");
     58    chipProcessedExpCreateTable(dbh);
    5959
    60     p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p2Mask");
    61     p2MaskCreateTable(dbh);
     60    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS chipMask");
     61    chipMaskCreateTable(dbh);
    6262
    63     p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p2ProcessedImfile");
    64     p2ProcessedImfileCreateTable(dbh);
     63    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS chipProcessedImfile");
     64    chipProcessedImfileCreateTable(dbh);
    6565
    66     p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p3PendingExp");
    67     p3PendingExpCreateTable(dbh);
     66    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS camPendingExp");
     67    camPendingExpCreateTable(dbh);
    6868
    69     p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p3ProcessedExp");
    70     p3ProcessedExpCreateTable(dbh);
     69    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS camProcessedExp");
     70    camProcessedExpCreateTable(dbh);
    7171
    72     p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p3Mask");
    73     p3MaskCreateTable(dbh);
     72    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS camMask");
     73    camMaskCreateTable(dbh);
    7474
    7575    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS detRun");
     
    106106    detRunSummaryCreateTable(dbh);
    107107
    108     p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4Run");
    109     p4RunCreateTable(dbh);
     108    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS warpRun");
     109    warpRunCreateTable(dbh);
    110110
    111     p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4InputExp");
    112     p4InputExpCreateTable(dbh);
     111    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS warpInputExp");
     112    warpInputExpCreateTable(dbh);
    113113
    114     p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4SkyCellMap");
    115     p4SkyCellMapCreateTable(dbh);
     114    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS warpSkyCellMap");
     115    warpSkyCellMapCreateTable(dbh);
    116116
    117     p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4Skyfile");
    118     p4SkyfileCreateTable(dbh);
     117    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS warpSkyfile");
     118    warpSkyfileCreateTable(dbh);
    119119
    120     p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p5Run");
    121     p5RunCreateTable(dbh);
     120    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS diffRun");
     121    diffRunCreateTable(dbh);
    122122
    123     p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p5InputSkyfile");
    124     p5InputSkyfileCreateTable(dbh);
     123    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS diffInputSkyfile");
     124    diffInputSkyfileCreateTable(dbh);
    125125
    126     p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p5DiffSkyfile");
    127     p5DiffSkyfileCreateTable(dbh);
     126    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS diffSkyfile");
     127    diffSkyfileCreateTable(dbh);
    128128
    129     p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p6Run");
    130     p6RunCreateTable(dbh);
     129    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS stackRun");
     130    stackRunCreateTable(dbh);
    131131
    132     p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p6InputSkyfile");
    133     p6InputSkyfileCreateTable(dbh);
     132    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS stackInputSkyfile");
     133    stackInputSkyfileCreateTable(dbh);
    134134
    135     p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p6SumSkyfile");
    136     p6SumSkyfileCreateTable(dbh);
     135    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS stackSumSkyfile");
     136    stackSumSkyfileCreateTable(dbh);
    137137
    138138    psDBCleanup(dbh);
Note: See TracChangeset for help on using the changeset viewer.