Skip to content
Snippets Groups Projects
Commit 6dfbda4e authored by felmer's avatar felmer
Browse files

Fixing DumpPreparatorTest

parent 931433e3
No related branches found
No related tags found
No related merge requests found
...@@ -53,7 +53,7 @@ public class DumpPreparatorTest ...@@ -53,7 +53,7 @@ public class DumpPreparatorTest
+ "-- Data for Name: data; Type: TABLE DATA; Schema: public; Owner: felmer\n" + "-- Data for Name: data; Type: TABLE DATA; Schema: public; Owner: felmer\n"
+ "--\n" + "--\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" + "\n"
+ "\n" + "\n"
...@@ -63,7 +63,7 @@ public class DumpPreparatorTest ...@@ -63,7 +63,7 @@ public class DumpPreparatorTest
+ "-- Data for Name: data_types; Type: TABLE DATA; Schema: public; Owner: felmer\n" + "-- Data for Name: data_types; Type: TABLE DATA; Schema: public; Owner: felmer\n"
+ "--\n" + "--\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" + "1\tVARCHAR\tVariable length character\n"
+ "2\tINTEGER\tInteger\n" + "2\tINTEGER\tInteger\n"
+ "3\tREAL\tReal number, i.e. an inexact, variable-precision numeric type\n" + "3\tREAL\tReal number, i.e. an inexact, variable-precision numeric type\n"
...@@ -76,7 +76,7 @@ public class DumpPreparatorTest ...@@ -76,7 +76,7 @@ public class DumpPreparatorTest
+ "-- Data for Name: data_values; Type: TABLE DATA; Schema: public; Owner: felmer\n" + "-- Data for Name: data_values; Type: TABLE DATA; Schema: public; Owner: felmer\n"
+ "--\n" + "--\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" + "\n"
+ "\n" + "\n"
...@@ -86,7 +86,7 @@ public class DumpPreparatorTest ...@@ -86,7 +86,7 @@ public class DumpPreparatorTest
+ "-- Data for Name: database_version_logs; Type: TABLE DATA; Schema: public; Owner: felmer\n" + "-- Data for Name: database_version_logs; Type: TABLE DATA; Schema: public; Owner: felmer\n"
+ "--\n" + "--\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" + "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" + "010\tsource/sql/postgresql/010/data-010.sql\tSUCCESS 2007-11-22 08:46:04.53\n"
+ "\\.\n" + "\\.\n"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment