From 7cc9184e5992b5ec776656266dfd2f4e661c40ea Mon Sep 17 00:00:00 2001 From: Tyler Hamilton Date: Fri, 13 Sep 2024 21:31:20 -0700 Subject: [PATCH] Fixes broken link to to_timestamp documentation --- batch-processing-silver/Batch Processing - Silver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/batch-processing-silver/Batch Processing - Silver.py b/batch-processing-silver/Batch Processing - Silver.py index 5ccc3b8..e6d2157 100644 --- a/batch-processing-silver/Batch Processing - Silver.py +++ b/batch-processing-silver/Batch Processing - Silver.py @@ -247,7 +247,7 @@ def start_transaction_request_flatten(input_df: DataFrame): # MAGIC %md # MAGIC ### EXERCISE: StartTransaction Request Cast Columns -# MAGIC Cast the `timestamp` column to [TimestampType](https://spark.apache.org/docs/3.1.3/api/python/reference/api/pyspark.sql.types.TimestampType.html?highlight=timestamptype#pyspark.sql.types.TimestampType) using [to_timestamp](https://spark.apache.org/docs/3.1.3/api/python/reference/api/pyspark.sql.functions.to_timestamp.html?highlight=to_timestamp#pyspark.sql.functions.to_timestamp) +# MAGIC Cast the `timestamp` column to [TimestampType](https://spark.apache.org/docs/3.1.3/api/python/reference/api/pyspark.sql.types.TimestampType.html?highlight=timestamptype#pyspark.sql.types.TimestampType) using [to_timestamp](https://spark.apache.org/docs/3.4.0/api/python/reference/pyspark.sql/api/pyspark.sql.functions.to_timestamp.html?highlight=to_timestamp#pyspark.sql.functions.to_timestamp) # MAGIC Hint: You have to import the function from "pyspark.sql.functions" first. # MAGIC # MAGIC Target Schema: