Skip to content

Commit

Permalink
Fix upload_model_executions
Browse files Browse the repository at this point in the history
  • Loading branch information
HingeAntoine committed Oct 8, 2024
1 parent 0a53283 commit 4225e2f
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,7 @@
{% if query_completed_at %}CAST('{{ query_completed_at }}' AS timestamp){% else %}null{% endif %}, {# query_completed_at #}

{{ model.execution_time }}, {# total_node_runtime #}
safe_cast('{{ model.adapter_response.rows_affected }}' as int64),
safe_cast('{{ model.adapter_response.bytes_processed }}' as int64),
cast('{{ model.adapter_response.rows_affected }}' as int),
'{{ model.node.config.materialized }}', {# materialization #}
'{{ model.node.schema }}', {# schema #}
'{{ model.node.name }}', {# name #}
Expand Down

0 comments on commit 4225e2f

Please sign in to comment.