Skip to content

Commit 77b9603

Browse files
committed
Syntax docs
1 parent bdb151e commit 77b9603

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
@@ -1100,10 +1100,17 @@ impl fmt::Display for TableWithJoins {
11001100
#[cfg_attr(feature = "visitor", derive(Visit, VisitMut))]
11011101
pub struct ConnectBy {
11021102
/// START WITH
1103+
///
1104+
/// Optional on [Oracle](https://docs.oracle.com/en/database/oracle/oracle-database/21/sqlrf/Hierarchical-Queries.html#GUID-0118DF1D-B9A9-41EB-8556-C6E7D6A5A84E)
1105+
/// when comming _after_ the `CONNECT BY`.
11031106
pub condition: Option<Expr>,
1107+
11041108
/// CONNECT BY
11051109
pub relationships: Vec<Expr>,
1110+
11061111
/// [CONNECT BY] NOCYCLE
1112+
///
1113+
/// 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)
11071114
pub nocycle: bool,
11081115
}
11091116

0 commit comments

Comments
 (0)