IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 28475


Ignore:
Timestamp:
Jun 24, 2010, 12:57:49 PM (16 years ago)
Author:
Paul Price
Message:

Use 'magicked' column in the BackgroundRun tables.

Location:
branches/pap
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/pap/dbconfig/background.md

    r28179 r28475  
    1313    note                STR     255
    1414    registered          TAI     NULL
     15    magicked            S64     0
    1516END
    1617
     
    4849    note                STR     255
    4950    registered          TAI     NULL
     51    magicked            S64     0
    5052END
    5153
  • branches/pap/ippTools/share/pxadmin_create_tables.sql

    r28461 r28475  
    16941694    note VARCHAR(255),        -- note
    16951695    registered TIMESTAMP DEFAULT CURRENT_TIMESTAMP, -- time run was registered
     1696    magicked BIGINT DEFAULT 0 NOT NULL, -- magic status
    16961697    PRIMARY KEY(chip_bg_id),
    16971698    KEY(chip_id),
     
    17401741    note VARCHAR(255),        -- note
    17411742    registered TIMESTAMP DEFAULT CURRENT_TIMESTAMP, -- time run was registered
     1743    magicked BIGINT DEFAULT 0 NOT NULL, -- magic status
    17421744    PRIMARY KEY(warp_bg_id),
    17431745    KEY(warp_id),
  • branches/pap/ippTools/src/bgtool.c

    r28473 r28475  
    432432                                     reduction   ? reduction  : row->reduction,
    433433                                     note        ? note       : row->note,
    434                                      NULL)) {
     434                                     NULL, 0)) {
    435435            psError(psErrorCodeLast(), false, "database error");
    436436            psFree(row);
     
    12031203                                     reduction   ? reduction  : row->reduction,
    12041204                                     note        ? note       : row->note,
    1205                                      NULL)) {
     1205                                     NULL, 0)) {
    12061206            psError(psErrorCodeLast(), false, "database error");
    12071207            psFree(row);
Note: See TracChangeset for help on using the changeset viewer.