miller/test/input/nullvals.json
John Kerl 4fb0b716ba
Make is_null/is_not_null DSL functions include new JSON-null type (#883)
* Make is_null/is_not_null DSL functions include new JSON-null type

* regression-test files
2022-01-18 08:25:03 -05:00

37 lines
286 B
JSON

[
{
"a": "r",
"x": 1,
"y": 2,
"z": ""
},
{
"a": "s",
"x": 3,
"y": 4,
"z": ""
},
{
"a": "t",
"x": 5,
"y": "",
"z": ""
},
{
"a": "u",
"x": "",
"y": 6
},
{
"a": "v",
"x": "",
"y": "",
"z": "null"
},
{
"a": "v",
"x": "",
"y": "",
"z": null
}
]