wip: add joins to the select

This commit is contained in:
alpaylan
2025-07-06 14:46:38 -04:00
parent c28c83fa2c
commit 0bce68b38d
25 changed files with 1093 additions and 300 deletions

View File

@@ -896,7 +896,7 @@ pub struct FromClause {
pub select: Option<Box<SelectTable>>, // FIXME mandatory
/// `JOIN`ed tabled
pub joins: Option<Vec<JoinedSelectTable>>,
op: Option<JoinOperator>, // FIXME transient
pub op: Option<JoinOperator>, // FIXME transient
}
impl FromClause {
pub(crate) fn empty() -> Self {