Converting Records to Tuples (cont)
A Tuple can be defined as
- a list of field descriptors for a record instance
(where a FieldDesc gives (offset,length,type) information)
- along with a reference to the
Record data
typedef struct {
ushort nfields;
FieldDesc fields[];
Record data;
} Tuple;
|
Fields are derived from relation descriptor + record instance data.
|