IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 29962 for trunk/ippTools/share


Ignore:
Timestamp:
Dec 6, 2010, 3:00:09 PM (16 years ago)
Author:
Serge CHASTEL
Message:

ppMops -version flag supported

Location:
trunk/ippTools/share
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/share/pubtool_definerun.sql

    r28428 r29962  
    33    client_id,
    44    stage_id,
    5     src_label
     5    src_label,
     6    output_format
    67FROM (
    78    -- Get diffs to publish
     
    910        client_id,
    1011        diff_id AS stage_id,
    11         diffRun.label AS src_label
     12        diffRun.label AS src_label,
     13        output_format
    1214    FROM publishClient
    1315    JOIN diffRun
     
    2830        client_id,
    2931        cam_id AS stage_id,
    30         camRun.label AS src_label
     32        camRun.label AS src_label,
     33        output_format
    3134    FROM publishClient
    3235    JOIN camRun
     
    4346        client_id,
    4447        diff_phot_id AS stage_id,
    45         diffPhotRun.label AS src_label
     48        diffPhotRun.label AS src_label,
     49        output_format
    4650    FROM publishClient
    4751    JOIN diffPhotRun
  • trunk/ippTools/share/pubtool_pending.sql

    r28491 r29962  
    99        publishClient.stage,
    1010        publishClient.workdir,
     11        publishClient.output_format,
    1112        diffRun.diff_id AS stage_id,
    1213        rawExp.camera,
     
    3536        publishClient.stage,
    3637        publishClient.workdir,
     38        publishClient.output_format,
    3739        camRun.cam_id AS stage_id,
    3840        rawExp.camera,
     
    5658        publishClient.stage,
    5759        publishClient.workdir,
     60        publishClient.output_format,
    5861        diffPhotRun.diff_phot_id AS stage_id,
    5962        rawExp.camera,
  • trunk/ippTools/share/pxadmin_create_tables.sql

    r29923 r29962  
    16431643    workdir VARCHAR(255) NOT NULL, -- working directory
    16441644    comment VARCHAR(255),            -- for human memory
    1645     PRIMARY KEY(client_id)
     1645    name varchar(64) default NULL, -- unique client_id verbose identifier
     1646    output_format SMALLINT NOT NULL default 1, -- format output versioning
     1647    PRIMARY KEY(client_id),
     1648    UNIQUE KEY name (name)
    16461649) ENGINE=innodb DEFAULT CHARSET=latin1;
    16471650
Note: See TracChangeset for help on using the changeset viewer.