-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ff0c584
commit ce568fd
Showing
9 changed files
with
400 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
129 changes: 129 additions & 0 deletions
129
lib/go/jsonframer/testdata/multiframer/array-of-array-numeric.jsonc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
// π This was machine generated. Do not edit. π | ||
// | ||
// Frame[0] { | ||
// "type": "numeric-long", | ||
// "typeVersion": [ | ||
// 0, | ||
// 1 | ||
// ] | ||
// } | ||
// Name: | ||
// Dimensions: 2 Fields by 2 Rows | ||
// +------------------+-----------------+ | ||
// | Name: age | Name: name | | ||
// | Labels: | Labels: | | ||
// | Type: []*float64 | Type: []*string | | ||
// +------------------+-----------------+ | ||
// | 2 | foo | | ||
// | 3 | bar | | ||
// +------------------+-----------------+ | ||
// | ||
// | ||
// | ||
// Frame[1] { | ||
// "type": "numeric-long", | ||
// "typeVersion": [ | ||
// 0, | ||
// 1 | ||
// ] | ||
// } | ||
// Name: | ||
// Dimensions: 2 Fields by 2 Rows | ||
// +-----------------+------------------+ | ||
// | Name: name | Name: salary | | ||
// | Labels: | Labels: | | ||
// | Type: []*string | Type: []*float64 | | ||
// +-----------------+------------------+ | ||
// | foo | 2430 | | ||
// | bar | 3000 | | ||
// +-----------------+------------------+ | ||
// | ||
// | ||
// π This was machine generated. Do not edit. π | ||
{ | ||
"status": 200, | ||
"frames": [ | ||
{ | ||
"schema": { | ||
"meta": { | ||
"type": "numeric-long", | ||
"typeVersion": [ | ||
0, | ||
1 | ||
] | ||
}, | ||
"fields": [ | ||
{ | ||
"name": "age", | ||
"type": "number", | ||
"typeInfo": { | ||
"frame": "float64", | ||
"nullable": true | ||
} | ||
}, | ||
{ | ||
"name": "name", | ||
"type": "string", | ||
"typeInfo": { | ||
"frame": "string", | ||
"nullable": true | ||
} | ||
} | ||
] | ||
}, | ||
"data": { | ||
"values": [ | ||
[ | ||
2, | ||
3 | ||
], | ||
[ | ||
"foo", | ||
"bar" | ||
] | ||
] | ||
} | ||
}, | ||
{ | ||
"schema": { | ||
"meta": { | ||
"type": "numeric-long", | ||
"typeVersion": [ | ||
0, | ||
1 | ||
] | ||
}, | ||
"fields": [ | ||
{ | ||
"name": "name", | ||
"type": "string", | ||
"typeInfo": { | ||
"frame": "string", | ||
"nullable": true | ||
} | ||
}, | ||
{ | ||
"name": "salary", | ||
"type": "number", | ||
"typeInfo": { | ||
"frame": "float64", | ||
"nullable": true | ||
} | ||
} | ||
] | ||
}, | ||
"data": { | ||
"values": [ | ||
[ | ||
"foo", | ||
"bar" | ||
], | ||
[ | ||
2430, | ||
3000 | ||
] | ||
] | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
lib/go/jsonframer/testdata/multiframer/array-of-items-numeric.jsonc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
// π This was machine generated. Do not edit. π | ||
// | ||
// Frame[0] { | ||
// "type": "numeric-long", | ||
// "typeVersion": [ | ||
// 0, | ||
// 1 | ||
// ] | ||
// } | ||
// Name: result | ||
// Dimensions: 1 Fields by 2 Rows | ||
// +-----------------+ | ||
// | Name: result | | ||
// | Labels: | | ||
// | Type: []*string | | ||
// +-----------------+ | ||
// | foo | | ||
// | bar | | ||
// +-----------------+ | ||
// | ||
// | ||
// π This was machine generated. Do not edit. π | ||
{ | ||
"status": 200, | ||
"frames": [ | ||
{ | ||
"schema": { | ||
"name": "result", | ||
"meta": { | ||
"type": "numeric-long", | ||
"typeVersion": [ | ||
0, | ||
1 | ||
] | ||
}, | ||
"fields": [ | ||
{ | ||
"name": "result", | ||
"type": "string", | ||
"typeInfo": { | ||
"frame": "string", | ||
"nullable": true | ||
} | ||
} | ||
] | ||
}, | ||
"data": { | ||
"values": [ | ||
[ | ||
"foo", | ||
"bar" | ||
] | ||
] | ||
} | ||
} | ||
] | ||
} |
Oops, something went wrong.