mysql - analyse views

This commit is contained in:
Jan Prochazka
2020-06-28 21:19:51 +02:00
parent 4e1ee72d4d
commit a85ad0a1f0
5 changed files with 31 additions and 6 deletions

View File

@@ -97,7 +97,8 @@ class StreamHandler {
}
row(row) {
// console.log('ACCEPT ROW', row);
this.currentWriter.row(row);
if (this.currentWriter) this.currentWriter.row(row);
else if (row.message) process.send({ msgtype: 'info', info: { message: row.message } });
// this.onRow(this.jslid);
}
// error(error) {