MAP_WITH_INDEX
Outputs an index and a value field. Index contains a zero based index, and value contains the value in the input field.
Syntax
Arguments
Name
Type
Description
Default Value
value
any
The value to convert to a record
Examples
value
Output
array['a', 'b', 'c']
[{index: 0, value: a
}, {index: 1, value: b
}, {index: 2, value: c
}]
Transformation job example
SQL
Query result
value[]
Output
array['a', 'b', 'c']
[{index: 0, value: a
}, {index: 1, value: b
}, {index: 2, value: c
}]
Last updated