Open adrdc opened 3 years ago
when reading an object with json records only line based works. document format does not work.
for example
line based works
{name: "chris", age: "27"} {name: "john", age: "31"}
document does not
{ name: "chris", age: "27" }, { name: "john", age: "31" }
Just a quick note, the keys (name and age) also have to be in double quotes. Otherwise, it will lead to a "No value present" when querying the table.
when reading an object with json records only line based works. document format does not work.
for example
line based works
document does not