IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 10037


Ignore:
Timestamp:
Nov 16, 2006, 6:26:54 PM (19 years ago)
Author:
jhoblitt
Message:

add summitImfileDropTable, pzDoneExpDropTable, & pzDoneImfileDropTable

File:
1 edited

Legend:

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

    r9790 r10037  
    4444    PS_ASSERT_PTR_NON_NULL(config, false);
    4545
     46#if 0
     47    CREATE_TABLE(expTagCounterCreateTable);
     48    // the counter must be initialized to 0
     49    if (!p_psDBRunQuery(config->dbh, "INSERT INTO expTagCounter VALUES (0)")) {
     50        psError(PS_ERR_UNKNOWN, false, "database error");
     51        status = false;
     52    }
     53#endif
    4654    CREATE_TABLE(summitExpCreateTable);
     55    CREATE_TABLE(summitImfileCreateTable);
    4756    CREATE_TABLE(pzPendingExpCreateTable);
    4857    CREATE_TABLE(pzPendingImfileCreateTable);
     58    CREATE_TABLE(pzDoneExpCreateTable);
     59    CREATE_TABLE(pzDoneImfileCreateTable);
    4960    CREATE_TABLE(newExpCreateTable);
    5061    CREATE_TABLE(newImfileCreateTable);
     
    104115    }
    105116
     117//    DROP_TABLE(expTagCounterDropTable);
    106118    DROP_TABLE(summitExpDropTable);
     119    DROP_TABLE(summitImfileDropTable);
    107120    DROP_TABLE(pzPendingExpDropTable);
    108121    DROP_TABLE(pzPendingImfileDropTable);
     122    DROP_TABLE(pzDoneExpDropTable);
     123    DROP_TABLE(pzDoneImfileDropTable);
    109124    DROP_TABLE(newExpDropTable);
    110125    DROP_TABLE(newImfileDropTable);
Note: See TracChangeset for help on using the changeset viewer.