From 7448b9881485b2c0507e89f75af24988c37ccca0 Mon Sep 17 00:00:00 2001 From: Avril Aysha <68642378+avriiil@users.noreply.github.com> Date: Sat, 1 Jun 2024 17:46:01 +0100 Subject: [PATCH 1/2] add context + api docs link --- docs/usage/deleting-rows-from-delta-lake-table.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/usage/deleting-rows-from-delta-lake-table.md b/docs/usage/deleting-rows-from-delta-lake-table.md index e1833c84b9..6c852100e6 100644 --- a/docs/usage/deleting-rows-from-delta-lake-table.md +++ b/docs/usage/deleting-rows-from-delta-lake-table.md @@ -32,3 +32,7 @@ Here are the contents of the Delta table after the delete operation has been per | 2 | b | +-------+----------+ ``` + +`dt.delete()` accepts any `SQL where` clause. If no predicate is provided, all rows will be deleted. + +Read more in the [API docs](https://delta-io.github.io/delta-rs/api/delta_table/#deltalake.DeltaTable.delete) From 52bde0619cbfb2b19a8749ffeb772bd5e4356b3f Mon Sep 17 00:00:00 2001 From: Avril Aysha <68642378+avriiil@users.noreply.github.com> Date: Tue, 24 Sep 2024 15:39:44 +0100 Subject: [PATCH 2/2] fix typos --- docs/integrations/object-storage/s3-like.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/integrations/object-storage/s3-like.md b/docs/integrations/object-storage/s3-like.md index 4d32f7c41b..40b2f6e076 100644 --- a/docs/integrations/object-storage/s3-like.md +++ b/docs/integrations/object-storage/s3-like.md @@ -1,8 +1,8 @@ # CloudFlare R2 & Minio -`delta-rs` offers native support for using Cloudflare R2 and Minio's as storage backend. R2 and Minio support conditional puts, however we have to pass this flag into the storage options. See the example blow +`delta-rs` offers native support for using Cloudflare R2 and Minio's as storage backend. R2 and Minio support conditional puts, however we have to pass this flag into the storage options. See the example below -You don’t need to install any extra dependencies to red/write Delta tables to S3 with engines that use `delta-rs`. You do need to configure your AWS access credentials correctly. +You don’t need to install any extra dependencies to read/write Delta tables to S3 with engines that use `delta-rs`. You do need to configure your AWS access credentials correctly. ## Passing S3 Credentials