Data Engineering Integration
- Data Engineering Integration 10.5
- All Products
Complex Data Type
| Description
|
---|---|
Array
| An array contains an ordered collection of elements of same data type. The elements in an array are delimited by commas. For example, an array of
fruits is represented as
[apple,banana,orange] .
|
Map
| A map contains an unordered collection of key-value pairs and are represented as pairs of strings and integers delimited by the
= character. String and integer pairs are delimited by commas. For example, a map of
fruits is represented as
[1=apple,2=banana,3=orange] .
|
Struct
| A struct contains a collection of elements of different data types delimited by the
: character. String and integer pairs are delimited by commas. For example, a struct is represented as
struct {1:"apple" [, "apple":"red", ...]}
.
|