Changeset 29962 for trunk/ippTools/share
- Timestamp:
- Dec 6, 2010, 3:00:09 PM (16 years ago)
- Location:
- trunk/ippTools/share
- Files:
-
- 3 edited
-
pubtool_definerun.sql (modified) (4 diffs)
-
pubtool_pending.sql (modified) (3 diffs)
-
pxadmin_create_tables.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/share/pubtool_definerun.sql
r28428 r29962 3 3 client_id, 4 4 stage_id, 5 src_label 5 src_label, 6 output_format 6 7 FROM ( 7 8 -- Get diffs to publish … … 9 10 client_id, 10 11 diff_id AS stage_id, 11 diffRun.label AS src_label 12 diffRun.label AS src_label, 13 output_format 12 14 FROM publishClient 13 15 JOIN diffRun … … 28 30 client_id, 29 31 cam_id AS stage_id, 30 camRun.label AS src_label 32 camRun.label AS src_label, 33 output_format 31 34 FROM publishClient 32 35 JOIN camRun … … 43 46 client_id, 44 47 diff_phot_id AS stage_id, 45 diffPhotRun.label AS src_label 48 diffPhotRun.label AS src_label, 49 output_format 46 50 FROM publishClient 47 51 JOIN diffPhotRun -
trunk/ippTools/share/pubtool_pending.sql
r28491 r29962 9 9 publishClient.stage, 10 10 publishClient.workdir, 11 publishClient.output_format, 11 12 diffRun.diff_id AS stage_id, 12 13 rawExp.camera, … … 35 36 publishClient.stage, 36 37 publishClient.workdir, 38 publishClient.output_format, 37 39 camRun.cam_id AS stage_id, 38 40 rawExp.camera, … … 56 58 publishClient.stage, 57 59 publishClient.workdir, 60 publishClient.output_format, 58 61 diffPhotRun.diff_phot_id AS stage_id, 59 62 rawExp.camera, -
trunk/ippTools/share/pxadmin_create_tables.sql
r29923 r29962 1643 1643 workdir VARCHAR(255) NOT NULL, -- working directory 1644 1644 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) 1646 1649 ) ENGINE=innodb DEFAULT CHARSET=latin1; 1647 1650
Note:
See TracChangeset
for help on using the changeset viewer.
