Details
-
Task
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Won't Do
-
None
-
None
Description
Current stream API permit to have event for each row.
A new options 'fetchSize' would permitting to agreggate data would be nice.
like :
connection.queryStream({sql:"SELECT * FROM mysql.user", fetchSize:100]) |
.on("data", rows => { |
//rows by bunch of fetchsize, or less for last bunch |
console.log(row);
|
});
|