Fix build

This commit is contained in:
Adria Navarro 2024-02-09 16:55:58 +01:00
parent b422762461
commit c42a8969c8
1 changed files with 4 additions and 15 deletions

View File

@ -127,16 +127,10 @@ class QueryRunner {
// transform as required
if (transformer) {
const runner = new ScriptRunner(
transformer,
{
data: rows,
params: enrichedParameters,
},
{
parseBson: datasource.source === SourceName.MONGODB,
}
)
const runner = new ScriptRunner(transformer, {
data: rows,
params: enrichedParameters,
})
rows = runner.execute()
}
@ -158,11 +152,6 @@ class QueryRunner {
return this.execute()
}
// check for undefined response
if (!rows) {
rows = []
}
// needs to an array for next step
if (!Array.isArray(rows)) {
rows = [rows]