Add comment block for Orphans column family. (#28340)
Add comment block for Orphans column family.
This commit is contained in:
parent
5d172151a2
commit
f910f2d7eb
|
@ -145,7 +145,12 @@ pub mod columns {
|
|||
pub struct SlotMeta;
|
||||
|
||||
#[derive(Debug)]
|
||||
/// The orphans column
|
||||
/// The orphans column.
|
||||
///
|
||||
/// This column family tracks whether a slot has a parent. Slots without a
|
||||
/// parent are by definition orphan slots. Orphans will have an entry in
|
||||
/// this column family with true value. Once an orphan slot has a parent,
|
||||
/// its entry in this column will be deleted.
|
||||
///
|
||||
/// index type: u64 (see `SlotColumn`)
|
||||
/// value type: bool
|
||||
|
|
Loading…
Reference in New Issue