Skip to content

Commit

Permalink
feat(test): update .sql dumps to use specific schema
Browse files Browse the repository at this point in the history
  • Loading branch information
jmkerloch committed Feb 23, 2023
1 parent 86f7fed commit 219d8dc
Show file tree
Hide file tree
Showing 4 changed files with 2,950 additions and 2,947 deletions.
4 changes: 2 additions & 2 deletions tests/config/sql2pivot.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
"id": "bdtopo",
"type": "bdd",
"configFile": "{src_dir}/tests/config/bdtopo_base.json",
"schema": "public"
"schema": "input"
},
{
"id": "pivot",
"type": "bdd",
"configFile": "{src_dir}/tests/config/pivot_base.json",
"schema": "public"
"schema": "pivot_schema"
}
],
"workingSpace": {
Expand Down
9 changes: 4 additions & 5 deletions tests/dumps/non_communication_marseille10.sql
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
Expand All @@ -27,7 +26,7 @@ SET default_table_access_method = heap;
-- Name: non_communication; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.non_communication (
CREATE TABLE non_communication (
fid bigint,
geom public.geometry(Point,2154),
cleabs character varying(24),
Expand All @@ -46,9 +45,9 @@ CREATE TABLE public.non_communication (
-- Data for Name: non_communication; Type: TABLE DATA; Schema: public; Owner: -
--

INSERT INTO public.non_communication VALUES (168, '01010000206A0800009A999999604A2B419A9999B965D35741', 'NON_COMM0000000040688510', '2006-11-22 12:22:15.461', NULL, NULL, NULL, 'TRONROUT0000000040969830', 'TRONROUT0000000040969807');
INSERT INTO public.non_communication VALUES (172, '01010000206A08000000000000FC4E2B41000000A0EED25741', 'NON_COMM0000000040688505', '2006-11-22 12:22:15.461', NULL, NULL, NULL, 'TRONROUT0000000040969480', 'TRONROUT0000000040969520');
INSERT INTO public.non_communication VALUES (173, '01010000206A08000000000000FC4E2B41000000A0EED25741', 'NON_COMM0000000040688503', '2006-11-22 12:22:15.461', NULL, NULL, NULL, 'TRONROUT0000000040969520', 'TRONROUT0000000040972944');
INSERT INTO non_communication VALUES (168, '01010000206A0800009A999999604A2B419A9999B965D35741', 'NON_COMM0000000040688510', '2006-11-22 12:22:15.461', NULL, NULL, NULL, 'TRONROUT0000000040969830', 'TRONROUT0000000040969807');
INSERT INTO non_communication VALUES (172, '01010000206A08000000000000FC4E2B41000000A0EED25741', 'NON_COMM0000000040688505', '2006-11-22 12:22:15.461', NULL, NULL, NULL, 'TRONROUT0000000040969480', 'TRONROUT0000000040969520');
INSERT INTO non_communication VALUES (173, '01010000206A08000000000000FC4E2B41000000A0EED25741', 'NON_COMM0000000040688503', '2006-11-22 12:22:15.461', NULL, NULL, NULL, 'TRONROUT0000000040969520', 'TRONROUT0000000040972944');


-- Completed on 2023-02-15 16:17:18 CET
Expand Down
Loading

0 comments on commit 219d8dc

Please sign in to comment.