Skip to content

Commit b3926fd

Browse files
authored
chore(tests): move sql files as fixtures (#88)
* chore(tests): move sql files as fixtures * remove unused libs
1 parent c0b3d85 commit b3926fd

File tree

3 files changed

+3106
-10
lines changed

3 files changed

+3106
-10
lines changed
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
--
2+
-- PostgreSQL database dump
3+
--
4+
5+
-- Dumped from database version 14.7 (Ubuntu 14.7-1.pgdg22.04+1)
6+
-- Dumped by pg_dump version 15.2 (Ubuntu 15.2-1.pgdg22.04+1)
7+
8+
-- Started on 2023-02-15 16:17:18 CET
9+
10+
SET statement_timeout = 0;
11+
SET lock_timeout = 0;
12+
SET idle_in_transaction_session_timeout = 0;
13+
SET client_encoding = 'UTF8';
14+
SET standard_conforming_strings = on;
15+
SET check_function_bodies = false;
16+
SET xmloption = content;
17+
SET client_min_messages = warning;
18+
SET row_security = off;
19+
20+
SET default_tablespace = '';
21+
22+
SET default_table_access_method = heap;
23+
24+
--
25+
-- TOC entry 225 (class 1259 OID 2521477)
26+
-- Name: non_communication; Type: TABLE; Schema: public; Owner: -
27+
--
28+
29+
CREATE TABLE non_communication (
30+
fid bigint,
31+
geom public.geometry(Point,2154),
32+
cleabs character varying(24),
33+
date_creation timestamp without time zone,
34+
date_modification timestamp without time zone,
35+
date_d_apparition date,
36+
date_de_confirmation date,
37+
lien_vers_troncon_entree character varying(24),
38+
liens_vers_troncon_sortie character varying
39+
);
40+
41+
42+
--
43+
-- TOC entry 4615 (class 0 OID 2521477)
44+
-- Dependencies: 225
45+
-- Data for Name: non_communication; Type: TABLE DATA; Schema: public; Owner: -
46+
--
47+
48+
INSERT INTO non_communication VALUES (168, '01010000206A0800009A999999604A2B419A9999B965D35741', 'NON_COMM0000000040688510', '2006-11-22 12:22:15.461', NULL, NULL, NULL, 'TRONROUT0000000040969830', 'TRONROUT0000000040969807');
49+
INSERT INTO non_communication VALUES (172, '01010000206A08000000000000FC4E2B41000000A0EED25741', 'NON_COMM0000000040688505', '2006-11-22 12:22:15.461', NULL, NULL, NULL, 'TRONROUT0000000040969480', 'TRONROUT0000000040969520');
50+
INSERT INTO non_communication VALUES (173, '01010000206A08000000000000FC4E2B41000000A0EED25741', 'NON_COMM0000000040688503', '2006-11-22 12:22:15.461', NULL, NULL, NULL, 'TRONROUT0000000040969520', 'TRONROUT0000000040972944');
51+
52+
53+
-- Completed on 2023-02-15 16:17:18 CET
54+
55+
--
56+
-- PostgreSQL database dump complete
57+
--
58+

0 commit comments

Comments
 (0)