upgraded tedious driver

This commit is contained in:
Jan Prochazka
2022-06-02 16:47:46 +02:00
parent 97d259cd1e
commit 5feb018e22
5 changed files with 624 additions and 189 deletions

View File

@@ -29,11 +29,7 @@ function runBulkInsertBatch(pool, tableName, writable, rows) {
);
}
for (const row of rows) {
bulkLoad.addRow(row);
}
pool.execBulkLoad(bulkLoad);
pool.execBulkLoad(bulkLoad, rows);
});
}