Functions for maps

mapAdd

Collect all the keys and sum corresponding values.

Syntax

  1. mapAdd(Tuple(Array, Array), Tuple(Array, Array) [, ...])

Parameters

Arguments are tuples of two arrays, where items in the first array represent keys, and the second array contains values for the each key. All key arrays should have same type, and all value arrays should contain items which are promote to the one type (Int64, UInt64 or Float64). The common promoted type is used as a type for the result array.

Returned value

  • Returns one tuple, where the first array contains the sorted keys and the second array contains values.

Example

Query:

  1. SELECT mapAdd(([toUInt8(1), 2], [1, 1]), ([toUInt8(1), 2], [1, 1])) as res, toTypeName(res) as type;

Result:

  1. ┌─res───────────┬─type───────────────────────────────┐
  2. ([1,2],[2,2]) Tuple(Array(UInt8), Array(UInt64))
  3. └───────────────┴────────────────────────────────────┘

mapSubtract

Collect all the keys and subtract corresponding values.

Syntax

  1. mapSubtract(Tuple(Array, Array), Tuple(Array, Array) [, ...])

Parameters

Arguments are tuples of two arrays, where items in the first array represent keys, and the second array contains values for the each key. All key arrays should have same type, and all value arrays should contain items which are promote to the one type (Int64, UInt64 or Float64). The common promoted type is used as a type for the result array.

Returned value

  • Returns one tuple, where the first array contains the sorted keys and the second array contains values.

Example

Query:

  1. SELECT mapSubtract(([toUInt8(1), 2], [toInt32(1), 1]), ([toUInt8(1), 2], [toInt32(2), 1])) as res, toTypeName(res) as type;

Result:

  1. ┌─res────────────┬─type──────────────────────────────┐
  2. ([1,2],[-1,0]) Tuple(Array(UInt8), Array(Int64))
  3. └────────────────┴───────────────────────────────────┘

mapPopulateSeries

Fills missing keys in the maps (key and value array pair), where keys are integers. Also, it supports specifying the max key, which is used to extend the keys array.

Syntax

  1. mapPopulateSeries(keys, values[, max])

Generates a map, where keys are a series of numbers, from minimum to maximum keys (or max argument if it specified) taken from keys array with a step size of one, and corresponding values taken from values array. If the value is not specified for the key, then it uses the default value in the resulting map. For repeated keys, only the first value (in order of appearing) gets associated with the key.

The number of elements in keys and values must be the same for each row.

Parameters

Returned value

  • Returns a tuple of two arrays: keys in sorted order, and values the corresponding keys.

Example

Query:

  1. select mapPopulateSeries([1,2,4], [11,22,44], 5) as res, toTypeName(res) as type;

Result:

  1. ┌─res──────────────────────────┬─type──────────────────────────────┐
  2. ([1,2,3,4,5],[11,22,0,44,0]) Tuple(Array(UInt8), Array(UInt8))
  3. └──────────────────────────────┴───────────────────────────────────┘

Original article