-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmapping_details.sql
106 lines (104 loc) · 1.45 KB
/
mapping_details.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
--CREATE TABLE my_schema.mapping_details
CREATE TABLE mapping_details
(
json_type text,
json_path text,
db_schema text,
db_table text,
db_column text
);
--INSERT INTO my_schema.mapping_details
INSERT INTO mapping_details
(
json_type,
json_path,
db_schema,
db_table,
db_column
)
VALUES (
'sample_json',
'text',
-- 'my_schema',
null,
'sample',
'pg_text'
), (
'sample_json',
'numeric',
-- 'my_schema',
null,
'sample',
'pg_numeric'
), (
'sample_json',
'object,boolean',
-- 'my_schema',
null,
'sample',
'pg_boolean'
), (
'sample_json',
'object,null',
-- 'my_schema',
null,
'sample',
'pg_empty'
), (
'sample_json',
'array,int',
-- 'my_schema',
null,
'sample_2',
'pg_int'
), (
'sample_json',
'array,char',
-- 'my_schema',
null,
'sample_2',
'pg_char'
), (
'sample_json',
'altObject,int',
'alt_schema',
'alt_table',
'pg_int'
), (
'sample_json',
'array2,bool',
-- 'my_schema',
null,
'sample_3',
'pg_arr2_bool'
), (
'sample_json',
'array2,array3,string',
-- 'my_schema',
null,
'sample_3',
'pg_arr3_string'
), (
'sample_json',
'array2,array3,int',
-- 'my_schema',
null,
'sample_3',
'pg_arr3_int'
), (
'sample_json',
'array2,array4,a',
-- 'my_schema',
null,
'sample_3',
'pg_arr4_a'
), (
'sample_json',
'array2,array4,b',
-- 'my_schema',
null,
'sample_3',
'pg_arr4_b'
);
--SELECT * FROM my_schema.mapping_details;
SELECT * FROM mapping_details;