Skip to content

Commit 483ac40

Browse files
authored
Merge pull request #9 from ArzamastsevVladyslav/fix/HCK-3772-oracle-number-default-values
Fixed oracle number type conversion
2 parents 8be5066 + e3cc613 commit 483ac40

File tree

1 file changed

+73
-54
lines changed

1 file changed

+73
-54
lines changed

types/numeric.json

Lines changed: 73 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,75 @@
11
{
2-
"name": "numeric",
3-
"erdAbbreviation": "<num>",
4-
"dtdAbbreviation": "{123}",
5-
"useSample": true,
6-
"defaultValues": {
7-
"primaryKey": false,
8-
"relationshipType": "",
9-
"parentRelationship": "",
10-
"childRelationships": [],
11-
"foreignCollection": "",
12-
"foreignField": [],
13-
"default": "",
14-
"mode": "",
15-
"unit": "",
16-
"minimum": "",
17-
"exclusiveMinimum": false,
18-
"maximum": "",
19-
"exclusiveMaximum": false,
20-
"multipleOf": "",
21-
"divisibleBy": "",
22-
"enum": [],
23-
"sample": ""
24-
},
25-
"descriptor": [{
26-
"schema": {
27-
"mode": "int32"
28-
},
29-
"capacity": 4
30-
}, {
31-
"schema": {
32-
"mode": "int64"
33-
},
34-
"capacity": 8
35-
}, {
36-
"schema": {
37-
"mode": "double"
38-
},
39-
"capacity": 8
40-
}, {
41-
"schema": {
42-
"mode": "int64"
43-
},
44-
"mode": "long"
45-
}, {
46-
"schema": {
47-
"mode": "double"
48-
},
49-
"mode": "decimal"
50-
}, {
51-
"schema": {
52-
"mode": "double"
53-
},
54-
"mode": "floating"
55-
}]
2+
"name": "numeric",
3+
"erdAbbreviation": "<num>",
4+
"dtdAbbreviation": "{123}",
5+
"useSample": true,
6+
"defaultValues": {
7+
"primaryKey": false,
8+
"relationshipType": "",
9+
"parentRelationship": "",
10+
"childRelationships": [],
11+
"foreignCollection": "",
12+
"foreignField": [],
13+
"default": "",
14+
"mode": "",
15+
"unit": "",
16+
"minimum": "",
17+
"exclusiveMinimum": false,
18+
"maximum": "",
19+
"exclusiveMaximum": false,
20+
"multipleOf": "",
21+
"divisibleBy": "",
22+
"enum": [],
23+
"sample": ""
24+
},
25+
"descriptor": [
26+
{
27+
"schema": {
28+
"mode": "int32"
29+
},
30+
"capacity": 4
31+
},
32+
{
33+
"schema": {
34+
"mode": "int32"
35+
},
36+
"mode": "smallint"
37+
},
38+
{
39+
"schema": {
40+
"mode": "int32"
41+
},
42+
"mode": "integer"
43+
},
44+
{
45+
"schema": {
46+
"mode": "int64"
47+
},
48+
"capacity": 8
49+
},
50+
{
51+
"schema": {
52+
"mode": "double"
53+
},
54+
"capacity": 8
55+
},
56+
{
57+
"schema": {
58+
"mode": "int64"
59+
},
60+
"mode": "long"
61+
},
62+
{
63+
"schema": {
64+
"mode": "double"
65+
},
66+
"mode": "decimal"
67+
},
68+
{
69+
"schema": {
70+
"mode": "double"
71+
},
72+
"mode": "floating"
73+
}
74+
]
5675
}

0 commit comments

Comments
 (0)