You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So we should probably do some clarification and I'm working (actually today) on making this support more flexible, but read_json (not read_ndjson) only reads the first object from a data source (often an array but could be a one-row-single document), and ndjson reads line separated json.
While the ndjson support leads to some optimization, the read_json function makes it possible to read some data-dumps and perhaps data off of public APIs.
Description
I'm having various issues testing out
read_json
.The below produces
ValueError: Found non-unique column index
When I use the explicit
read
functions below, I getExecutionException: External error: trailing characters at line 2 column 1
(The above is also true when I use
csv_scan
instead ofread_csv
.All data used above is the test data in this repo.
This also produced the
trailing characters
error:However, both of these queries work:
This WHERE clause also seems to lead to that
trailing characters
issue.The text was updated successfully, but these errors were encountered: