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
Currently, the Presto client returns a simple object for the data retrieved from the Presto server.
With the JSON parsing that includes BigInt, now it's a bit more inconvenient just serializing the response with a JSON.stringify. So we should think about some kind of API, with a wrapper object for the response that allows easier serializing (something like response.toString() or response.text()) and retrieving the raw data. It could include retrieving by column name, etc.
The text was updated successfully, but these errors were encountered:
Feature request
Currently, the Presto client returns a simple object for the data retrieved from the Presto server.
With the JSON parsing that includes BigInt, now it's a bit more inconvenient just serializing the response with a
JSON.stringify
. So we should think about some kind of API, with a wrapper object for the response that allows easier serializing (something likeresponse.toString()
orresponse.text()
) and retrieving the raw data. It could include retrieving by column name, etc.The text was updated successfully, but these errors were encountered: