The delta storage exists only in main memory. Only delta log entries are written to the
persistence layer when delta entries are inserted.
So when a read is performed the result is a merge of current table in memory + current delta for that table in memory.
Delta insert is written to disk for recovery purpose.
Similar question here as well.