diff --git a/dbmigration/sourceTest/java/ch/systemsx/cisd/dbmigration/postgresql/DumpPreparatorTest.java b/dbmigration/sourceTest/java/ch/systemsx/cisd/dbmigration/postgresql/DumpPreparatorTest.java
index 531c00372c3040a37c4e667dec0f44d0318a08b9..025629842e13974de3b0ad4ab7fced40fd06c986 100644
--- a/dbmigration/sourceTest/java/ch/systemsx/cisd/dbmigration/postgresql/DumpPreparatorTest.java
+++ b/dbmigration/sourceTest/java/ch/systemsx/cisd/dbmigration/postgresql/DumpPreparatorTest.java
@@ -53,7 +53,7 @@ public class DumpPreparatorTest
                     + "-- Data for Name: data; Type: TABLE DATA; Schema: public; Owner: felmer\n"
                     + "--\n"
                     + "\n"
-                    + "COPY data (id, registration_timestamp, obty_id) FROM stdin;\n"
+                    + "COPY public.data (id, registration_timestamp, obty_id) FROM stdin;\n"
                     + "\\.\n"
                     + "\n"
                     + "\n"
@@ -63,7 +63,7 @@ public class DumpPreparatorTest
                     + "-- Data for Name: data_types; Type: TABLE DATA; Schema: public; Owner: felmer\n"
                     + "--\n"
                     + "\n"
-                    + "COPY data_types (id, \"location\", description) FROM stdin;\n"
+                    + "COPY public.data_types (id, \"location\", description) FROM stdin;\n"
                     + "1\tVARCHAR\tVariable length character\n"
                     + "2\tINTEGER\tInteger\n"
                     + "3\tREAL\tReal number, i.e. an inexact, variable-precision numeric type\n"
@@ -76,7 +76,7 @@ public class DumpPreparatorTest
                     + "-- Data for Name: data_values; Type: TABLE DATA; Schema: public; Owner: felmer\n"
                     + "--\n"
                     + "\n"
-                    + "COPY data_values (id, data_id, saco_id, value) FROM stdin;\n"
+                    + "COPY public.data_values (id, data_id, saco_id, value) FROM stdin;\n"
                     + "\\.\n"
                     + "\n"
                     + "\n"
@@ -86,7 +86,7 @@ public class DumpPreparatorTest
                     + "-- Data for Name: database_version_logs; Type: TABLE DATA; Schema: public; Owner: felmer\n"
                     + "--\n"
                     + "\n"
-                    + "COPY database_version_logs (db_version, module_name, run_status) FROM stdin;\n"
+                    + "COPY public.database_version_logs (db_version, module_name, run_status) FROM stdin;\n"
                     + "011\tsource/sql/postgresql/010/schema-010.sql\tSUCCESS 2007-11-22 08:46:04.25\n"
                     + "010\tsource/sql/postgresql/010/data-010.sql\tSUCCESS 2007-11-22 08:46:04.53\n"
                     + "\\.\n"