From ef5f6d89e6be94a69068fce23ab7a0806a1c913a Mon Sep 17 00:00:00 2001 From: 317brian <53799971+317brian@users.noreply.github.com> Date: Thu, 8 Aug 2024 11:30:11 -0700 Subject: [PATCH] Apply suggestions from code review --- docs/ingestion/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ingestion/index.md b/docs/ingestion/index.md index 1e01f816fd2..56c8b5683db 100644 --- a/docs/ingestion/index.md +++ b/docs/ingestion/index.md @@ -75,7 +75,7 @@ runs for the duration of the job. | **Can append?** | Yes. | Yes (INSERT). | No. | | **Can overwrite?** | Yes. | Yes (REPLACE). | Yes. | | **External dependencies** | None. | None. | Hadoop cluster. | -| **Input sources** | Any [`inputSource`](./input-sources.md). | Any [`inputSource`](./input-sources.md) (using [EXTERN](../multi-stage-query/concepts.md#extern)) except SQL input sources or Druid datasource (using FROM). | Any Hadoop FileSystem or Druid datasource. | +| **Input sources** | Any [`inputSource`](./input-sources.md). | Any [`inputSource`](./input-sources.md) (using [EXTERN](../multi-stage-query/concepts.md#extern)) or Druid datasource (using FROM) except SQL input sources. | Any Hadoop FileSystem or Druid datasource. | | **Input formats** | Any [`inputFormat`](./data-formats.md#input-format). | Any [`inputFormat`](./data-formats.md#input-format). | Any Hadoop InputFormat. | | **Secondary partitioning options** | Dynamic, hash-based, and range-based partitioning methods are available. See [partitionsSpec](./native-batch.md#partitionsspec) for details.| Range partitioning ([CLUSTERED BY](../multi-stage-query/concepts.md#clustering)). | Hash-based or range-based partitioning via [`partitionsSpec`](hadoop.md#partitionsspec). | | **[Rollup modes](./rollup.md#perfect-rollup-vs-best-effort-rollup)** | Perfect if `forceGuaranteedRollup` = true in the [`tuningConfig`](native-batch.md#tuningconfig). | Always perfect. | Always perfect. |