As much as I appreciate the current stream method... It Would be awesome to have a method that returns a readable stream so that each row can be iterated more easily.
async fn() {
for await (const row of sql`...`.toNodeStream()) {
// do something with row.
}
}