Skip to content

Commit 86a7b42

Browse files
committed
Address feedback
1 parent 5f69e08 commit 86a7b42

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

sqlmesh/core/plan/explainer.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,9 @@ def visit_physical_layer_update_step(self, step: steps.PhysicalLayerUpdateStep)
9999
if not step.snapshots:
100100
return Tree("[bold]SKIP: No physical layer updates to perform[/bold]")
101101

102-
tree = Tree("[bold]Validate SQL and create physical tables if they do not exist[/bold]")
102+
tree = Tree(
103+
"[bold]Validate SQL and create physical layer tables and views if they do not exist[/bold]"
104+
)
103105
for snapshot in step.snapshots:
104106
is_deployable = (
105107
step.deployability_index.is_deployable(snapshot)
@@ -217,7 +219,7 @@ def visit_virtual_layer_update_step(self, step: steps.VirtualLayerUpdateStep) ->
217219
f"[bold]Update the virtual layer for environment '{self.environment_naming_info.name}'[/bold]"
218220
)
219221
promote_tree = Tree(
220-
"[bold]Create or update views in the virtual layer to point at new physical tables[/bold]"
222+
"[bold]Create or update views in the virtual layer to point at new physical tables and views[/bold]"
221223
)
222224
for snapshot in step.promoted_snapshots:
223225
display_name = self._display_name(snapshot)

0 commit comments

Comments
 (0)