fixed bulk import

This commit is contained in:
SPRINX0\prochazka
2025-03-05 12:55:37 +01:00
parent 75bf58359c
commit 3a04166747
2 changed files with 4 additions and 2 deletions

View File

@@ -52,7 +52,7 @@ function runBulkInsertBatch(dbhan, tableName, writable, rows) {
function createTediousBulkInsertStream(driver, stream, dbhan, name, options) {
const writable = createBulkInsertStreamBase(driver, stream, dbhan, name, options);
const fullName = name.schemaName ? `[${name.schemaName}].[${name.pureName}]` : name.pureName;
const fullName = name.schemaName ? `[${name.schemaName}].[${name.pureName}]` : `[${name.pureName}]`;
writable.send = async () => {
if (!writable.templateColumns) {