Changeset 12026 for trunk/ippdb/tests/dbsetup.c
- Timestamp:
- Feb 23, 2007, 4:28:07 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/ippdb/tests/dbsetup.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippdb/tests/dbsetup.c
r11988 r12026 46 46 rawImfileCreateTable(dbh); 47 47 48 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p1PendingExp");49 p1PendingExpCreateTable(dbh);48 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS guidePendingExp"); 49 guidePendingExpCreateTable(dbh); 50 50 51 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p2PendingExp");52 p2PendingExpCreateTable(dbh);51 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS chipPendingExp"); 52 chipPendingExpCreateTable(dbh); 53 53 54 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p2PendingImfile");55 p2PendingImfileCreateTable(dbh);54 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS chipPendingImfile"); 55 chipPendingImfileCreateTable(dbh); 56 56 57 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p2ProcessedExp");58 p2ProcessedExpCreateTable(dbh);57 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS chipProcessedExp"); 58 chipProcessedExpCreateTable(dbh); 59 59 60 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p2Mask");61 p2MaskCreateTable(dbh);60 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS chipMask"); 61 chipMaskCreateTable(dbh); 62 62 63 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p2ProcessedImfile");64 p2ProcessedImfileCreateTable(dbh);63 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS chipProcessedImfile"); 64 chipProcessedImfileCreateTable(dbh); 65 65 66 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p3PendingExp");67 p3PendingExpCreateTable(dbh);66 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS camPendingExp"); 67 camPendingExpCreateTable(dbh); 68 68 69 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p3ProcessedExp");70 p3ProcessedExpCreateTable(dbh);69 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS camProcessedExp"); 70 camProcessedExpCreateTable(dbh); 71 71 72 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p3Mask");73 p3MaskCreateTable(dbh);72 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS camMask"); 73 camMaskCreateTable(dbh); 74 74 75 75 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS detRun"); … … 106 106 detRunSummaryCreateTable(dbh); 107 107 108 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4Run");109 p4RunCreateTable(dbh);108 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS warpRun"); 109 warpRunCreateTable(dbh); 110 110 111 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4InputExp");112 p4InputExpCreateTable(dbh);111 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS warpInputExp"); 112 warpInputExpCreateTable(dbh); 113 113 114 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4SkyCellMap");115 p4SkyCellMapCreateTable(dbh);114 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS warpSkyCellMap"); 115 warpSkyCellMapCreateTable(dbh); 116 116 117 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4Skyfile");118 p4SkyfileCreateTable(dbh);117 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS warpSkyfile"); 118 warpSkyfileCreateTable(dbh); 119 119 120 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p5Run");121 p5RunCreateTable(dbh);120 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS diffRun"); 121 diffRunCreateTable(dbh); 122 122 123 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p5InputSkyfile");124 p5InputSkyfileCreateTable(dbh);123 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS diffInputSkyfile"); 124 diffInputSkyfileCreateTable(dbh); 125 125 126 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p5DiffSkyfile");127 p5DiffSkyfileCreateTable(dbh);126 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS diffSkyfile"); 127 diffSkyfileCreateTable(dbh); 128 128 129 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p6Run");130 p6RunCreateTable(dbh);129 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS stackRun"); 130 stackRunCreateTable(dbh); 131 131 132 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p6InputSkyfile");133 p6InputSkyfileCreateTable(dbh);132 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS stackInputSkyfile"); 133 stackInputSkyfileCreateTable(dbh); 134 134 135 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p6SumSkyfile");136 p6SumSkyfileCreateTable(dbh);135 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS stackSumSkyfile"); 136 stackSumSkyfileCreateTable(dbh); 137 137 138 138 psDBCleanup(dbh);
Note:
See TracChangeset
for help on using the changeset viewer.
