+
K
Supported in: Batch, Streaming
Explode map into a row per key, value pair.
Expression categories: Map
Type variable bounds: TKey accepts AnyType**TValue accepts AnyType
Output type: Struct<Optional[key], Optional[value]>
Argument values:
map
Given input table:
Expected output table: | map | | ----- | | { key -> 1, value -> val1,} | | { key -> 2, value -> val2,} | | { key -> 3, value -> val3,} | | { key -> 4, value -> val4,} |
Expected output table: | map | | ----- | | { key -> k1, value -> q1,} |
Expected output table: | map | | ----- |