From 1d24e69bcd39988d65d65386bad4c9308ef5fa6b Mon Sep 17 00:00:00 2001 From: Seokyun Ha Date: Tue, 24 Oct 2023 06:22:28 +0900 Subject: [PATCH] Add missed continuation (#57) Thanks for your patience @BlueHorn07 - we've fixed the background checks now. --- src/pages/latest/delta-batch.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/latest/delta-batch.mdx b/src/pages/latest/delta-batch.mdx index ff2cf6e..05c43de 100644 --- a/src/pages/latest/delta-batch.mdx +++ b/src/pages/latest/delta-batch.mdx @@ -1172,7 +1172,7 @@ spark.read.table(...) \ .withColumn("birthDate", col("birthDate").cast("date")) \ .write \ .format("delta") \ - .mode("overwrite") + .mode("overwrite") \ .option("overwriteSchema", "true") \ .saveAsTable(...) ```