Skip to content

Commit 86027d1

Browse files
committed
Added descriptors for numbers and integers
1 parent 041754a commit 86027d1

File tree

2 files changed

+39
-2
lines changed

2 files changed

+39
-2
lines changed

types/integer.json

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,26 @@
2525
"mode": "int32",
2626
"sample": "",
2727
"nullable": false
28-
}
28+
},
29+
"descriptor": [
30+
{
31+
"schema": {
32+
"mode": "int32"
33+
},
34+
"capacity": 4
35+
},
36+
{
37+
"schema": {
38+
"mode": "int64"
39+
},
40+
"capacity": 8
41+
},
42+
{
43+
"schema": {
44+
"mode": "int64"
45+
},
46+
"capacity": 16,
47+
"mode": "decimal"
48+
}
49+
]
2950
}

types/number.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,21 @@
2525
"mode": "float",
2626
"sample": "",
2727
"nullable": false
28-
}
28+
},
29+
"descriptor": [
30+
{
31+
"schema": {
32+
"mode": "float"
33+
},
34+
"capacity": 4,
35+
"mode": "floating"
36+
},
37+
{
38+
"schema": {
39+
"mode": "double"
40+
},
41+
"capacity": 8,
42+
"mode": "floating"
43+
}
44+
]
2945
}

0 commit comments

Comments
 (0)