From a1aacbedab2586894f90779ad30c0f3b088ba82b Mon Sep 17 00:00:00 2001 From: Chenyu Li Date: Thu, 20 Jul 2023 14:38:01 -0700 Subject: [PATCH] add a node status (#8174) (cherry picked from commit 0d645c227f9e84116ee03c048bad22fce4fcc2b3) --- .changes/unreleased/Fixes-20230720-122723.yaml | 6 ++++++ core/dbt/task/compile.py | 1 + 2 files changed, 7 insertions(+) create mode 100644 .changes/unreleased/Fixes-20230720-122723.yaml diff --git a/.changes/unreleased/Fixes-20230720-122723.yaml b/.changes/unreleased/Fixes-20230720-122723.yaml new file mode 100644 index 00000000000..8c390f6fbe3 --- /dev/null +++ b/.changes/unreleased/Fixes-20230720-122723.yaml @@ -0,0 +1,6 @@ +kind: Fixes +body: Add status to Parse Inline Error +time: 2023-07-20T12:27:23.085084-07:00 +custom: + Author: ChenyuLInx + Issue: "8173" diff --git a/core/dbt/task/compile.py b/core/dbt/task/compile.py index 44ba54bee8b..e3fd99f615b 100644 --- a/core/dbt/task/compile.py +++ b/core/dbt/task/compile.py @@ -151,6 +151,7 @@ def _runtime_initialize(self): "node_path": "sql/inline_query", "node_name": "inline_query", "unique_id": "sqloperation.test.inline_query", + "node_status": "failed", }, ) )