glaredb_core 25.6.2

Core functionality for GlareDB
Documentation
1
2
3
4
5
6
7
8
9
10
// TODO: This might need some scoping information.
#[derive(Debug, Clone, PartialEq)]
pub struct ResolvedCte {
    /// Normalized name for the CTE.
    pub name: String,
    /// Depth this CTE was found at.
    pub depth: usize,
}

// TODO: Proto conv