In a LOAD FROM file, complex data types appear as follows:
constructor{val1 , val2 , ... }
For example, to load the SET values {1, 3, 4} into a column whose data type is SET(INTEGER NOT NULL), the corresponding field of the LOAD FROM file appears as:
|SET{1 , 3 , 4}|
ROW(val1 , val2 , ... )
For example, to load the ROW values (1, 'abc'), the corresponding field of the LOAD FROM file appears as:
|ROW(1 , abc)|