From 576a559eefd4ff4dab5a157e8bb11a9df3943f9a Mon Sep 17 00:00:00 2001 From: Gerda Shank Date: Thu, 5 Dec 2024 14:25:16 -0500 Subject: [PATCH] Remove docs and meta handled in update_node_config --- core/dbt/parser/partial.py | 1 - core/dbt/parser/schemas.py | 2 -- 2 files changed, 3 deletions(-) diff --git a/core/dbt/parser/partial.py b/core/dbt/parser/partial.py index 38842c51cab..e011c57670a 100644 --- a/core/dbt/parser/partial.py +++ b/core/dbt/parser/partial.py @@ -921,7 +921,6 @@ def delete_schema_macro_patch(self, schema_file, macro): self.add_to_pp_files(self.saved_files[macro_file_id]) def delete_schema_data_test_patch(self, schema_file, data_test): - print(f"--- in delete_schema_data_test_patch") data_test_unique_id = None for unique_id in schema_file.node_patches: if not unique_id.startswith("test"): diff --git a/core/dbt/parser/schemas.py b/core/dbt/parser/schemas.py index e0c94b8b444..12bb84a5037 100644 --- a/core/dbt/parser/schemas.py +++ b/core/dbt/parser/schemas.py @@ -1199,8 +1199,6 @@ def parse_patch(self, block: TargetBlock[UnparsedSingularTestUpdate], refs: Pars node.patch_path = patch.file_id node.description = patch.description node.created_at = time.time() - node.meta = patch.meta - node.docs = patch.docs class MacroPatchParser(PatchParser[UnparsedMacroUpdate, ParsedMacroPatch]):