Skip to content

Commit c501161

Browse files
committed
check that ci enforces rustfmt
1 parent e6b2633 commit c501161

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/sqlast/query.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ use super::*;
1717
#[derive(Debug, Clone, PartialEq, Hash)]
1818
pub struct SQLQuery {
1919
/// WITH (common table expressions, or CTEs)
20-
pub ctes: Vec<Cte>,
20+
pub ctes: Vec<
21+
Cte
22+
>,
2123
/// SELECT or UNION / EXCEPT / INTECEPT
2224
pub body: SQLSetExpr,
2325
/// ORDER BY

0 commit comments

Comments
 (0)