Changeset 42207 for branches/eam_branches/ipp-20220316/ippTools/share
- Timestamp:
- May 17, 2022, 3:30:24 PM (4 years ago)
- Location:
- branches/eam_branches/ipp-20220316/ippTools/share
- Files:
-
- 2 added
- 6 edited
-
Makefile.am (modified) (1 diff)
-
fpcamtool_find_cam_and_chip_id.sql (modified) (1 diff)
-
fpcamtool_inputastrom.sql (added)
-
fpcamtool_inputchips.sql (added)
-
fpcamtool_pendingexp.sql (modified) (2 diffs)
-
fpcamtool_revertprocessedexp.sql (modified) (1 diff)
-
pxadmin_create_tables.sql (modified) (1 diff)
-
pxadmin_drop_tables.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20220316/ippTools/share/Makefile.am
r42197 r42207 549 549 fpcamtool_find_processedexp.sql \ 550 550 fpcamtool_pendingexp.sql \ 551 fpcamtool_inputchips.sql \ 552 fpcamtool_inputastrom.sql \ 551 553 fpcamtool_queue_cam_id.sql \ 552 554 fpcamtool_revertprocessedexp.sql \ -
branches/eam_branches/ipp-20220316/ippTools/share/fpcamtool_find_cam_and_chip_id.sql
r42197 r42207 5 5 SELECT 6 6 exp_id, 7 chip_id ,7 chip_id 8 8 FROM chipRun 9 9 JOIN rawExp -
branches/eam_branches/ipp-20220316/ippTools/share/fpcamtool_pendingexp.sql
r42197 r42207 18 18 LEFT JOIN fpcamProcessedExp 19 19 USING(fpcam_id) 20 LEFT JOIN fpcamMask21 ON fpcamRun.label = fpcamMask.label22 20 LEFT JOIN Label 23 21 ON fpcamRun.label = Label.label … … 25 23 chipRun.state = 'full' 26 24 AND camRun.state = 'full' 27 AND ((fpcamRun.state = 'new' AND fpcamProcessedExp. cam_id IS NULL) OR25 AND ((fpcamRun.state = 'new' AND fpcamProcessedExp.fpcam_id IS NULL) OR 28 26 (fpcamRun.state = 'update' AND fpcamProcessedExp.fault = 0 AND fpcamProcessedExp.quality = 0)) 29 AND fpcamMask.label IS NULL30 27 AND (Label.active OR Label.active IS NULL) -
branches/eam_branches/ipp-20220316/ippTools/share/fpcamtool_revertprocessedexp.sql
r42197 r42207 2 2 USING fpcamProcessedExp, fpcamRun, camRun, chipRun, rawExp 3 3 WHERE 4 fpcamRun. cam_id = fpcamProcessedExp.cam_id4 fpcamRun.fpcam_id = fpcamProcessedExp.fpcam_id 5 5 AND fpcamRun.cam_id = camRun.cam_id 6 6 AND fpcamRun.chip_id = chipRun.chip_id -
branches/eam_branches/ipp-20220316/ippTools/share/pxadmin_create_tables.sql
r42193 r42207 2474 2474 deteff_uq FLOAT, 2475 2475 2476 quality SMALLINT 2476 quality SMALLINT, 2477 2477 2478 2478 PRIMARY KEY(fpcam_id), 2479 2479 KEY(fault), 2480 FOREIGN KEY (fpcam_id) REFERENCES fpcamRun(fpcam_id) ,2480 FOREIGN KEY (fpcam_id) REFERENCES fpcamRun(fpcam_id) 2481 2481 ) ENGINE=innodb DEFAULT CHARSET=latin1; 2482 2482 -
branches/eam_branches/ipp-20220316/ippTools/share/pxadmin_drop_tables.sql
r38157 r42207 129 129 DROP TABLE IF EXISTS remoteComponent; 130 130 DROP TABLE IF EXISTS remoteRun; 131 131 DROP TABLE IF EXISTS fpcamProcessedExp; 132 DROP TABLE IF EXISTS fpcamRun; 132 133 133 134 SET FOREIGN_KEY_CHECKS=1
Note:
See TracChangeset
for help on using the changeset viewer.
