Data Engineering Integration
- Data Engineering Integration 10.5
- All Products
Complex Data Type
| Description
|
---|---|
array
| An array is an ordered collection of elements.
The elements can be of a primitive or complex data type. All elements in the array must be of the same data type.
|
map
| A map is an unordered collection of key-value pair elements.
The key must be of a primitive data type. The value can be of a primitive or complex data type.
|
struct
| A struct is a collection of elements of different data types.
The elements can be of primitive or complex data types. Struct has a schema that defines the structure of the data.
|