From c341e8a0ddc4b9814e48bfca6e48814777b82f44 Mon Sep 17 00:00:00 2001 From: prrao87 Date: Fri, 20 Dec 2024 08:34:03 -0500 Subject: [PATCH] Minor fixes --- src/content/docs/extensions/delta.md | 6 +++--- src/content/docs/extensions/iceberg.md | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/content/docs/extensions/delta.md b/src/content/docs/extensions/delta.md index a8020a1b..92d7218d 100644 --- a/src/content/docs/extensions/delta.md +++ b/src/content/docs/extensions/delta.md @@ -6,7 +6,7 @@ title: "Delta Lake" The `delta` extension adds support for scanning/copying from the [`Delta Lake open-source storage format`](https://delta.io/). Delta Lake is an open-source storage framework that enables building a format agnostic Lakehouse architecture. -Using this extension, you can interact with Delta tables from within Kùzu. +Using this extension, you can interact with Delta tables from within Kùzu using the `LOAD FROM` and `COPY FROM` clauses. The Delta functionality is not available by default, so you would first need to install the `DELTA` extension by running the following commands: @@ -141,5 +141,5 @@ COPY student FROM 's3://kuzu-sample/student-delta' (file_format='delta') When using the Delta Lake extension in Kùzu, keep the following limitations in mind. -- Writing (i.e., exporting to) Delta files is currently not supported. -- We currently do not support scanning/copying nested data (i.e., of type `STRUCT`) in the Delta table columns. +- Writing (i.e., exporting to) Delta files from Kùzu is currently not supported. + diff --git a/src/content/docs/extensions/iceberg.md b/src/content/docs/extensions/iceberg.md index bba4ba88..e8a17b28 100644 --- a/src/content/docs/extensions/iceberg.md +++ b/src/content/docs/extensions/iceberg.md @@ -4,6 +4,7 @@ title: "Iceberg" The `iceberg` extension adds support for scanning and copying from the [Apache Iceberg format](https://iceberg.apache.org/). Iceberg is an open-source table format originally developed at Netflix for large-scale analytical datasets. +Using this extension, you can interact with Iceberg tables from within Kùzu using the `LOAD FROM` and `COPY FROM` clauses. The Iceberg functionality is not available by default, so you would first need to install the `iceberg` extension by running the following commands: @@ -241,5 +242,5 @@ COPY student FROM 's3://path/to/iceberg_table' (file_format='iceberg', allow_mov When using the Iceberg extension in Kùzu, keep the following limitations in mind. -- Writing (i.e., exporting to) Iceberg tables is currently not supported. +- Writing (i.e., exporting to) Iceberg tables from Kùzu is currently not supported. - We currently do not support scanning/copying nested data (i.e., of type `STRUCT`) in the Iceberg table columns.