We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Copy of this issue from the legacy repository brianc/node-pg-query-stream#51
When using pg-query-stream is there a way to get the field description at the beginning or end of the stream?
pg-query-stream
The text was updated successfully, but these errors were encountered:
You can do this:
const query = new QueryStream('SELECT * FROM SOMETHING') const stream = client.query(query) client.connection.once('rowDescription', (fields) => { })
The stream itself doesn't emit the row description event, but the connection (kinda lower level thing inside the client) does.
Sorry, something went wrong.
No branches or pull requests
Copy of this issue from the legacy repository brianc/node-pg-query-stream#51
When using
pg-query-stream
is there a way to get the field description at the beginning or end of the stream?The text was updated successfully, but these errors were encountered: