Changeset 42387 for trunk/ippTools/share
- Timestamp:
- Feb 8, 2023, 12:14:39 PM (3 years ago)
- Location:
- trunk/ippTools
- Files:
-
- 5 edited
- 9 copied
-
. (modified) (1 prop)
-
share (modified) (1 prop)
-
share/Makefile.am (modified) (1 diff)
-
share/fpcamtool_find_cam_and_chip_id.sql (copied) (copied from branches/eam_branches/ipp-20220316/ippTools/share/fpcamtool_find_cam_and_chip_id.sql )
-
share/fpcamtool_find_cam_id.sql (copied) (copied from branches/eam_branches/ipp-20220316/ippTools/share/fpcamtool_find_cam_id.sql )
-
share/fpcamtool_find_processedexp.sql (copied) (copied from branches/eam_branches/ipp-20220316/ippTools/share/fpcamtool_find_processedexp.sql )
-
share/fpcamtool_inputastrom.sql (copied) (copied from branches/eam_branches/ipp-20220316/ippTools/share/fpcamtool_inputastrom.sql )
-
share/fpcamtool_inputchips.sql (copied) (copied from branches/eam_branches/ipp-20220316/ippTools/share/fpcamtool_inputchips.sql )
-
share/fpcamtool_pendingexp.sql (copied) (copied from branches/eam_branches/ipp-20220316/ippTools/share/fpcamtool_pendingexp.sql )
-
share/fpcamtool_queue_cam_id.sql (copied) (copied from branches/eam_branches/ipp-20220316/ippTools/share/fpcamtool_queue_cam_id.sql )
-
share/fpcamtool_revertprocessedexp.sql (copied) (copied from branches/eam_branches/ipp-20220316/ippTools/share/fpcamtool_revertprocessedexp.sql )
-
share/fpcamtool_revertupdatedexp.sql (copied) (copied from branches/eam_branches/ipp-20220316/ippTools/share/fpcamtool_revertupdatedexp.sql )
-
share/pxadmin_create_tables.sql (modified) (1 diff)
-
share/pxadmin_drop_tables.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools
- Property svn:mergeinfo changed
/branches/eam_branches/ipp-20220316/ippTools (added) merged: 42166,42193,42195-42197,42205-42207,42213,42258,42367
- Property svn:mergeinfo changed
-
trunk/ippTools/share
- Property svn:mergeinfo changed
/branches/eam_branches/ipp-20220316/ippTools/share (added) merged: 42193,42195,42197,42207,42213,42367
- Property svn:mergeinfo changed
-
trunk/ippTools/share/Makefile.am
r42097 r42387 543 543 remotetool_listcomponent.sql \ 544 544 remotetool_doneprep.sql \ 545 remotetool_updatepoll.sql 545 remotetool_updatepoll.sql \ 546 fpcamtool_find_cam_and_chip_id.sql \ 547 fpcamtool_find_cam_id.sql \ 548 fpcamtool_find_processedexp.sql \ 549 fpcamtool_pendingexp.sql \ 550 fpcamtool_inputchips.sql \ 551 fpcamtool_inputastrom.sql \ 552 fpcamtool_queue_cam_id.sql \ 553 fpcamtool_revertprocessedexp.sql \ 554 fpcamtool_revertupdatedexp.sql 555 -
trunk/ippTools/share/pxadmin_create_tables.sql
r42097 r42387 2427 2427 ) ENGINE=innodb DEFAULT CHARSET=latin1; 2428 2428 2429 CREATE TABLE fpcamRun ( 2430 fpcam_id BIGINT AUTO_INCREMENT, 2431 cam_id BIGINT, 2432 chip_id BIGINT, 2433 state VARCHAR(64), 2434 workdir VARCHAR(255), 2435 workdir_state VARCHAR(64), 2436 label VARCHAR(64), 2437 data_group VARCHAR(64), 2438 dist_group VARCHAR(64), 2439 reduction VARCHAR(64), 2440 dvodb VARCHAR(255), 2441 software_ver VARCHAR(16), 2442 note VARCHAR(255), 2443 PRIMARY KEY(fpcam_id), 2444 KEY(cam_id), 2445 KEY(chip_id), 2446 KEY(state), 2447 KEY(label), 2448 INDEX(chip_id, cam_id), 2449 FOREIGN KEY (cam_id) REFERENCES camRun(cam_id), 2450 FOREIGN KEY (chip_id) REFERENCES chipRun(chip_id)) 2451 ENGINE=innodb DEFAULT CHARSET=latin1; 2452 2453 CREATE TABLE fpcamProcessedExp ( 2454 fpcam_id BIGINT, 2455 path_base VARCHAR(255), 2456 2457 zpt_obs FLOAT, 2458 zpt_stdev FLOAT, 2459 zpt_lq FLOAT, 2460 zpt_uq FLOAT, 2461 2462 dtime_script FLOAT, 2463 2464 hostname VARCHAR(64), 2465 n_stars INT, 2466 fault SMALLINT NOT NULL, 2467 epoch TIMESTAMP DEFAULT CURRENT_TIMESTAMP, 2468 2469 software_ver VARCHAR(16), 2470 2471 deteff_obs FLOAT, 2472 deteff_err FLOAT, 2473 deteff_lq FLOAT, 2474 deteff_uq FLOAT, 2475 2476 quality SMALLINT, 2477 2478 PRIMARY KEY(fpcam_id), 2479 KEY(fault), 2480 FOREIGN KEY (fpcam_id) REFERENCES fpcamRun(fpcam_id) 2481 ) ENGINE=innodb DEFAULT CHARSET=latin1; 2482 2429 2483 -- These comment lines are here to avoid an empty query error. 2430 2484 -- Another way to avoid that problem is to omit the semicolon above but I think that is untidy. -
trunk/ippTools/share/pxadmin_drop_tables.sql
r38157 r42387 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.
