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
{{ message }}
This repository has been archived by the owner on Dec 27, 2019. It is now read-only.
I guess this project - node-pg-query-stream - is about streaming large amounts of rows without exhausting mem, but we also need a way to stream a large bytea column value from a single row.
Given the above example, I am thinking something in the lines of support for select body from t and then have the query result be a stream type in node for each row.body.
And likewise, we also need a way to stream data into a column when inserting. Currently, I am passing in a Buffer, but would be nice to be able to provide a stream, which was then streamed to the server.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
hi, i create table with
keys
,body
column and the body column have large text data and i wanna read all text value of bodynow can split value of body to record OR read all value of body in chunk?
pg-query-stream
just chunk record by record can chunk value of column?The text was updated successfully, but these errors were encountered: