add the column into the processStringSync span
This commit is contained in:
parent
0d3ea23301
commit
899b6707e7
|
@ -76,9 +76,10 @@ export function processFormulas<T extends Row | Row[]>(
|
|||
let formula = schema.formula
|
||||
rows[i] = {
|
||||
...row,
|
||||
[column]: tracer.trace("processStringSync", {}, () =>
|
||||
processStringSync(formula, context)
|
||||
),
|
||||
[column]: tracer.trace("processStringSync", {}, span => {
|
||||
span?.addTags({ column })
|
||||
return processStringSync(formula, context)
|
||||
}),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue