diff --git a/README.md b/README.md index 5c1b133..1c9d09d 100644 --- a/README.md +++ b/README.md @@ -341,7 +341,7 @@ These are the options for `DruidSource`, to be passed with `write.options()`. | `druid.segment.rollup` | Whether to rollup data during ingestion | `true` | | `druid.segment.rollup` | Whether to rollup data during ingestion. Enabling this requires that there be at least one numeric input column. | `true` | | `druid.use_default_values_for_null` | Whether to use default values for nulls. See [SQL compatible null handling](https://druid.apache.org/docs/latest/querying/sql-data-types/#legacy-null-handling-mode) for details. | `true` | -| `druid.use_three_value_logic_for_native_filters` | Whether to use TODO. See [SQL compatible null handling](https://druid.apache.org/docs/latest/configuration/#sql-compatible-null-handling) for details. | `true` | +| `druid.use_three_value_logic_for_native_filters` | Whether to use SQL compatible three-value logic when processing native Druid filters. See [SQL compatible null handling](https://druid.apache.org/docs/latest/configuration/#sql-compatible-null-handling) for details. | `true` | | `druid.dimensions_spec` | List of dimensions provided as json string, when not provided defaults to all non metric/non time_column fields. See [DimensionsSpec](https://druid.apache.org/docs/latest/ingestion/index.html#dimensionsspec) for details | | | `druid.metrics_spec` | List of aggregators to apply at ingestion time as a json array string. Possible aggregators: [metricsSpec in Druid Docs](https://druid.apache.org/docs/latest/ingestion/ingestion-spec.html#metricsspec). When not provided, defaults to using `longSum` or `doubleSum` for all numeric columns. [Datasketches](https://druid.apache.org/docs/latest/development/extensions-core/datasketches-extension.html) are supported only with this config, see [datasketches notebook](python/notebooks/druid_sketch_ingestion_test.ipynb). See also: [No-Code wrapper script](#no-code-wrapper-script). | | | `druid.transform_spec` | List of transformations provided as json string, when not provided defaults to no transformations. See [TransformSpec](https://druid.apache.org/docs/latest/ingestion/index.html#transformspec) for details | |