From 535aa6677504b3bdb7f9dd824c920c9166f1b8ff Mon Sep 17 00:00:00 2001 From: Avril Aysha <68642378+avriiil@users.noreply.github.com> Date: Thu, 13 Jun 2024 12:16:48 +0100 Subject: [PATCH] add daft writer functionality --- .../python-deltalake/delta-lake-without-spark.ipynb | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/notebooks/python-deltalake/delta-lake-without-spark.ipynb b/notebooks/python-deltalake/delta-lake-without-spark.ipynb index 9336b35..ed121b1 100644 --- a/notebooks/python-deltalake/delta-lake-without-spark.ipynb +++ b/notebooks/python-deltalake/delta-lake-without-spark.ipynb @@ -481,21 +481,16 @@ "print(df.where(df[\"age\"] > 40).collect())" ] }, - { - "cell_type": "markdown", - "id": "7cc5d29c-9d46-4caf-a0bf-efa8859d4e15", - "metadata": {}, - "source": [ - "❗️`daft` currently (0.2.24) supports read operations without time travel. " - ] - }, { "cell_type": "code", "execution_count": null, "id": "b3eb0d94-cbdc-4ac3-b35d-2ae5b4b670fc", "metadata": {}, "outputs": [], - "source": [] + "source": [ + "# write to delta table\n", + "df.write_deltalake(\"tmp/daft-table\", mode=\"overwrite\")" + ] }, { "cell_type": "code",