From a124c6cbbd050563a5f147301b4df1f7253e9bc9 Mon Sep 17 00:00:00 2001 From: Vadim Ogievetsky Date: Sun, 19 May 2024 18:47:22 -0700 Subject: [PATCH] fix typo in extension name (#16466) --- docs/development/extensions-contrib/compressed-big-decimal.md | 2 +- docs/querying/sql-scalar.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/development/extensions-contrib/compressed-big-decimal.md b/docs/development/extensions-contrib/compressed-big-decimal.md index 187d7e45fbf..a2e7b7e32d5 100644 --- a/docs/development/extensions-contrib/compressed-big-decimal.md +++ b/docs/development/extensions-contrib/compressed-big-decimal.md @@ -34,7 +34,7 @@ Compressed big decimal is an absolute number based complex type based on big dec 2. Accuracy: Provides greater level of accuracy in decimal arithmetic ## Operations -To use this extension, make sure to [load](../../configuration/extensions.md#loading-extensions) `compressed-big-decimal` to your config file. +To use this extension, make sure to [load](../../configuration/extensions.md#loading-extensions) `druid-compressed-bigdecimal` to your config file. ## Configuration There are currently no configuration properties specific to Compressed Big Decimal diff --git a/docs/querying/sql-scalar.md b/docs/querying/sql-scalar.md index d0bf351f666..1ac0e7ce6ff 100644 --- a/docs/querying/sql-scalar.md +++ b/docs/querying/sql-scalar.md @@ -277,6 +277,6 @@ The [DataSketches extension](../development/extensions-core/datasketches-extensi |`CASE WHEN boolean_expr1 THEN result1 \[ WHEN boolean_expr2 THEN result2 ... \] \[ ELSE resultN \] END`|Searched CASE.| |`CAST(value AS TYPE)`|Cast value to another type. See [Data types](sql-data-types.md) for details about how Druid SQL handles CAST.| |`COALESCE(value1, value2, ...)`|Returns the first value that is neither NULL nor empty string.| -|`DECODE_BASE64_COMPLEX(dataType, expr)`| Decodes a Base64-encoded string into a complex data type, where `dataType` is the complex data type and `expr` is the Base64-encoded string to decode. The `hyperUnique` and `serializablePairLongString` data types are supported by default. You can enable support for the following complex data types by loading their extensions:
| +|`DECODE_BASE64_COMPLEX(dataType, expr)`| Decodes a Base64-encoded string into a complex data type, where `dataType` is the complex data type and `expr` is the Base64-encoded string to decode. The `hyperUnique` and `serializablePairLongString` data types are supported by default. You can enable support for the following complex data types by loading their extensions:
| |`NULLIF(value1, value2)`|Returns NULL if `value1` and `value2` match, else returns `value1`.| |`NVL(value1, value2)`|Returns `value1` if `value1` is not null, otherwise `value2`.| \ No newline at end of file