From 762a3f6592a13785193d119c94b7c7343c95881c Mon Sep 17 00:00:00 2001 From: Chenyu Li Date: Tue, 11 Apr 2023 11:09:38 -0700 Subject: [PATCH] use populate_cache flag --- core/dbt/task/compile.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/core/dbt/task/compile.py b/core/dbt/task/compile.py index 8b1883dd339..b900e9637ff 100644 --- a/core/dbt/task/compile.py +++ b/core/dbt/task/compile.py @@ -44,14 +44,6 @@ class CompileTask(GraphRunnableTask): # it should be removed before the task is complete _inline_node_id = None - # TODO remove when stu's PR about skip adapter cache is merged - def before_run(self, adapter, selected_uids: AbstractSet[str]): - if bool(getattr(self.args, "inline", None)): - # don't populate adapter cache when doing inline queries - pass - else: - super().before_run(adapter, selected_uids) - def raise_on_first_error(self): return True