Index: trunk/ippdb/tests/dbsetup.c
===================================================================
--- trunk/ippdb/tests/dbsetup.c	(revision 11045)
+++ trunk/ippdb/tests/dbsetup.c	(revision 11679)
@@ -7,5 +7,5 @@
     psDB            *dbh;
 
-    dbh = psDBInit("localhost", "test", NULL, "test");
+    dbh = psDBInit("localhost", "test", NULL, "test", 0);
     if (!dbh) {
         exit(EXIT_FAILURE);
@@ -106,21 +106,36 @@
     detRunSummaryCreateTable(dbh);
 
-    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4Run");
-    p4RunCreateTable(dbh);
+    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4aRun");
+    p4aRunCreateTable(dbh);
 
-    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4InputImfile");
-    p4InputImfileCreateTable(dbh);
+    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4aInputExp");
+    p4aInputExpCreateTable(dbh);
 
-    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4WarpedImfile");
-    p4WarpedImfileCreateTable(dbh);
+    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4aScfile");
+    p4aScfileCreateTable(dbh);
 
-    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4StackedImfile");
-    p4StackedImfileCreateTable(dbh);
+    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4bRun");
+    p4bRunCreateTable(dbh);
 
-    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4DiffImfile");
-    p4DiffImfileCreateTable(dbh);
+    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4bInputScfile");
+    p4bInputScfileCreateTable(dbh);
+
+    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4bDiffScfile");
+    p4bDiffScfileCreateTable(dbh);
+
+    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4cRun");
+    p4cRunCreateTable(dbh);
+
+    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4cInputExp");
+    p4cInputExpCreateTable(dbh);
 
     p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS p4MagicMaskImfile");
     p4MagicMaskImfileCreateTable(dbh);
+
+    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS skyCell");
+    skyCellCreateTable(dbh);
+
+    p_psDBRunQuery(dbh, "DROP TABLE IF EXISTS skyCellMap");
+    skyCellMapCreateTable(dbh);
 
     psDBCleanup(dbh);
