1use super::SourceTableId; 2 3#[derive(Debug, Clone, PartialEq)] 4pub enum TableFactor { 5 /// Reference to a table in the SourceTable's tables vec 6 Table(SourceTableId), 7}