mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
add flattenTuple to aspell-dict and replace Tuple with tuple
This commit is contained in:
parent
6df90c5c25
commit
e044b4bf02
@ -858,7 +858,7 @@ Result:
|
||||
|
||||
## flattenTuple
|
||||
|
||||
Returns a flattened `output` Tuple from a nested named `input` Tuple. Elements of the `output` Tuple are the paths from the original `Tuple`. For instance: `Tuple(a Int, Tuple(b Int, c Int)) -> Tuple(a Int, b Int, c Int)`. `flattenTuple` can be used to select all paths from type `Object` as separate columns.
|
||||
Returns a flattened `output` tuple from a nested named `input` tuple. Elements of the `output` tuple are the paths from the original `input` tuple. For instance: `Tuple(a Int, Tuple(b Int, c Int)) -> Tuple(a Int, b Int, c Int)`. `flattenTuple` can be used to select all paths from type `Object` as separate columns.
|
||||
|
||||
**Syntax**
|
||||
|
||||
@ -868,11 +868,11 @@ flattenTuple(input)
|
||||
|
||||
**Parameters**
|
||||
|
||||
- `input`: Nested named Tuple to flatten. [Tuple](../data-types/tuple).
|
||||
- `input`: Nested named tuple to flatten. [Tuple](../data-types/tuple).
|
||||
|
||||
**Returned value**
|
||||
|
||||
- `output` Tuple whose elements are paths from the original `input`. [Tuple](../data-types/tuple).
|
||||
- `output` tuple whose elements are paths from the original `input`. [Tuple](../data-types/tuple).
|
||||
|
||||
**Example**
|
||||
|
||||
|
@ -1566,6 +1566,7 @@ firstSignificantSubdomainCustom
|
||||
fixedstring
|
||||
flamegraph
|
||||
flatbuffers
|
||||
flattenTuple
|
||||
flink
|
||||
fluentd
|
||||
fmtlib
|
||||
|
Loading…
Reference in New Issue
Block a user