Changeset 11679 for trunk/ippdb/tests/dbsetup.c
- Timestamp:
- Feb 6, 2007, 3:46:45 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/ippdb/tests/dbsetup.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippdb/tests/dbsetup.c
r11045 r11679 7 7 psDB *dbh; 8 8 9 dbh = psDBInit("localhost", "test", NULL, "test" );9 dbh = psDBInit("localhost", "test", NULL, "test", 0); 10 10 if (!dbh) { 11 11 exit(EXIT_FAILURE); … … 106 106 detRunSummaryCreateTable(dbh); 107 107 108 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4 Run");109 p4 RunCreateTable(dbh);108 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4aRun"); 109 p4aRunCreateTable(dbh); 110 110 111 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4 InputImfile");112 p4 InputImfileCreateTable(dbh);111 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4aInputExp"); 112 p4aInputExpCreateTable(dbh); 113 113 114 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4 WarpedImfile");115 p4 WarpedImfileCreateTable(dbh);114 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4aScfile"); 115 p4aScfileCreateTable(dbh); 116 116 117 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4 StackedImfile");118 p4 StackedImfileCreateTable(dbh);117 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4bRun"); 118 p4bRunCreateTable(dbh); 119 119 120 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4DiffImfile"); 121 p4DiffImfileCreateTable(dbh); 120 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4bInputScfile"); 121 p4bInputScfileCreateTable(dbh); 122 123 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4bDiffScfile"); 124 p4bDiffScfileCreateTable(dbh); 125 126 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4cRun"); 127 p4cRunCreateTable(dbh); 128 129 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4cInputExp"); 130 p4cInputExpCreateTable(dbh); 122 131 123 132 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4MagicMaskImfile"); 124 133 p4MagicMaskImfileCreateTable(dbh); 134 135 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS skyCell"); 136 skyCellCreateTable(dbh); 137 138 p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS skyCellMap"); 139 skyCellMapCreateTable(dbh); 125 140 126 141 psDBCleanup(dbh);
Note:
See TracChangeset
for help on using the changeset viewer.
