Skip to content

Commit f8df94a

Browse files
committed
Syntax docs
1 parent 532bdba commit f8df94a

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

src/ast/query.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1210,10 +1210,17 @@ impl fmt::Display for TableWithJoins {
12101210
#[cfg_attr(feature = "visitor", derive(Visit, VisitMut))]
12111211
pub struct ConnectBy {
12121212
/// START WITH
1213+
///
1214+
/// Optional on [Oracle](https://docs.oracle.com/en/database/oracle/oracle-database/21/sqlrf/Hierarchical-Queries.html#GUID-0118DF1D-B9A9-41EB-8556-C6E7D6A5A84E)
1215+
/// when comming _after_ the `CONNECT BY`.
12131216
pub condition: Option<Expr>,
1217+
12141218
/// CONNECT BY
12151219
pub relationships: Vec<Expr>,
1220+
12161221
/// [CONNECT BY] NOCYCLE
1222+
///
1223+
/// Optional on [Oracle](https://docs.oracle.com/en/database/oracle/oracle-database/21/sqlrf/Hierarchical-Queries.html#GUID-0118DF1D-B9A9-41EB-8556-C6E7D6A5A84E__GUID-5377971A-F518-47E4-8781-F06FEB3EF993)
12171224
pub nocycle: bool,
12181225
}
12191226

0 commit comments

Comments
 (0)