Type RecordID

#include <minirel.h>

RecordID uniquely identifies a record. It is defined as a structure.

struct RecordID { 
    PageID pageNo; 
    int slotNo;
}
pageNo indicates which HeapPage it is currently in, and the slotNo indicates the slot where the record's location on the page is stored.