fix(MySQL Node): Fix "Maximum call stack size exceeded" error when handling a large number of rows (#10965)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-09-25 13:15:44 +02:00
committed by GitHub
parent afbe884dad
commit 62159bd71c
2 changed files with 4 additions and 4 deletions

View File

@@ -327,7 +327,7 @@ export class MySqlV1 implements INodeType {
{ itemData: { item: index } },
);
collection.push(...executionData);
collection = collection.concat(executionData);
return collection;
},