From 84a38e2899280dc42bd7e8a0d29663f294f95f9e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 23 Mar 2026 14:05:28 +0000 Subject: [PATCH 1/2] Initial plan From 59a46c55748b6bba962be4e5333a0a63372b31ba Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 23 Mar 2026 14:08:05 +0000 Subject: [PATCH 2/2] Fix NameError: add df loading before saveAsTable in lab 03 Co-authored-by: v-mohamrafi <263783887+v-mohamrafi@users.noreply.github.com> Agent-Logs-Url: https://github.com/MicrosoftLearning/mslearn-fabric/sessions/96cd4557-a20b-48de-9bba-ea52ad79b0b4 --- Instructions/Labs/03-delta-lake.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Instructions/Labs/03-delta-lake.md b/Instructions/Labs/03-delta-lake.md index d75522d8..f2ee66ca 100644 --- a/Instructions/Labs/03-delta-lake.md +++ b/Instructions/Labs/03-delta-lake.md @@ -122,6 +122,7 @@ The data files are created in the **Tables** folder. 1. To create a managed Delta table, add a new cell, enter the following code and then run the cell: ```python + df = spark.read.format("csv").option("header","true").schema(schema).load("Files/products/products.csv") df.write.format("delta").saveAsTable("managed_products") ```