IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 6, 2007, 3:46:45 PM (19 years ago)
Author:
jhoblitt
Message:

VERSION 1.1.1

File:
1 edited

Legend:

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

    r11045 r11679  
    77    psDB            *dbh;
    88
    9     dbh = psDBInit("localhost", "test", NULL, "test");
     9    dbh = psDBInit("localhost", "test", NULL, "test", 0);
    1010    if (!dbh) {
    1111        exit(EXIT_FAILURE);
     
    106106    detRunSummaryCreateTable(dbh);
    107107
    108     p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4Run");
    109     p4RunCreateTable(dbh);
     108    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4aRun");
     109    p4aRunCreateTable(dbh);
    110110
    111     p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4InputImfile");
    112     p4InputImfileCreateTable(dbh);
     111    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4aInputExp");
     112    p4aInputExpCreateTable(dbh);
    113113
    114     p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4WarpedImfile");
    115     p4WarpedImfileCreateTable(dbh);
     114    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4aScfile");
     115    p4aScfileCreateTable(dbh);
    116116
    117     p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4StackedImfile");
    118     p4StackedImfileCreateTable(dbh);
     117    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4bRun");
     118    p4bRunCreateTable(dbh);
    119119
    120     p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4DiffImfile");
    121     p4DiffImfileCreateTable(dbh);
     120    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4bInputScfile");
     121    p4bInputScfileCreateTable(dbh);
     122
     123    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4bDiffScfile");
     124    p4bDiffScfileCreateTable(dbh);
     125
     126    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4cRun");
     127    p4cRunCreateTable(dbh);
     128
     129    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4cInputExp");
     130    p4cInputExpCreateTable(dbh);
    122131
    123132    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4MagicMaskImfile");
    124133    p4MagicMaskImfileCreateTable(dbh);
     134
     135    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS skyCell");
     136    skyCellCreateTable(dbh);
     137
     138    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS skyCellMap");
     139    skyCellMapCreateTable(dbh);
    125140
    126141    psDBCleanup(dbh);
Note: See TracChangeset for help on using the changeset viewer.