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",