We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce7984f commit 1c546deCopy full SHA for 1c546de
src/ast/query.rs
@@ -242,9 +242,10 @@ pub enum TableFactor {
242
},
243
/// Represents a parenthesized table factor. The SQL spec only allows a
244
/// join expression (`(foo <JOIN> bar [ <JOIN> baz ... ])`) to be nested,
245
- /// possibly several times, but the parser also accepts the non-standard
246
- /// nesting of bare tables (`table_with_joins.joins.is_empty()`), so the
247
- /// name `NestedJoin` is a bit of misnomer.
+ /// possibly several times.
+ ///
+ /// The parser may also accept non-standard nesting of bare tables for some
248
+ /// dialects, but the information about such nesting is stripped from AST.
249
NestedJoin(Box<TableWithJoins>),
250
}
251
0 commit comments