-
Suppose I write a JS file for some complex processing (which is, as far as I understand, the precise use case). Where can I find the results of a |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Console output is indeed not available. However, just to avoid confusion: Dataform JS code is not executed at workflow execution time - it is executed at compile time, i.e. turning the JS into pure SQL (which can then be executed at some later date). So it's not as though you could e.g. have a console.log outputting some text as a result of running some SQL. |
Beta Was this translation helpful? Give feedback.
Console output is indeed not available.
However, just to avoid confusion: Dataform JS code is not executed at workflow execution time - it is executed at compile time, i.e. turning the JS into pure SQL (which can then be executed at some later date). So it's not as though you could e.g. have a console.log outputting some text as a result of running some SQL.