1use super::{Join, TableFactor}; 2 3#[derive(Debug, Clone, PartialEq)] 4pub struct TableWithJoins { 5 /// The table relation 6 pub relation: TableFactor, 7 8 /// Joins to apply 9 pub joins: Vec<Join>, 10}