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
@lukasmartinelli Import new line delimited JSON with pgfutter --host=localhost --port=5432 --schema=public json jsonfile and then export same JSON (no transformations) with pgclimb via $ pgclimb -c "select data from jsonfile;" jsonlines > jsonfile yields {"data":{"foo":"bar"}}.
How can I avoid the wrapping of the JSON in the column name? Have to shuffle large datasets in and out for transformations and re-query when an algorithm changes.
The text was updated successfully, but these errors were encountered:
@lukasmartinelli Import new line delimited JSON with
pgfutter --host=localhost --port=5432 --schema=public json jsonfile
and then export same JSON (no transformations) with pgclimb via$ pgclimb -c "select data from jsonfile;" jsonlines > jsonfile
yields{"data":{"foo":"bar"}}
.How can I avoid the wrapping of the JSON in the column name? Have to shuffle large datasets in and out for transformations and re-query when an algorithm changes.
The text was updated successfully, but these errors were encountered: