Functions
job_result | resolve
Get the result of an Agent Job.
Inputs
job_id
(String): The ID of the
Agent Job to get the result of.
This is usually the output of the run_agent
function.
Output
Varies depending on the Agent. The output of an Agent depends on the underlying Enging powering the Agent.
Example Usage
SELECT job_status('123e4567-e89b-12d3-a456-426614174000');
SELECT job_status(run_agent_result_column) FROM data_table;
SELECT resolve('123e4567-e89b-12d3-a456-426614174000');
SELECT resolve(run_agent_result_column) FROM data_table;