Skip to content

Commit f68491f

Browse files
committed
Add more descriptive docs comment
1 parent e1fe02e commit f68491f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/dialect/mod.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1215,6 +1215,13 @@ pub trait Dialect: Debug + Any {
12151215
}
12161216

12171217
/// Returns true if the dialect supports parsing statements without a semicolon delimiter.
1218+
///
1219+
/// If returns true, the following SQL will not parse. If returns `false` the SQL will parse
1220+
///
1221+
/// ```sql
1222+
/// SELECT 1
1223+
/// SELECT 2
1224+
/// ```
12181225
fn supports_statements_without_semicolon_delimiter(&self) -> bool {
12191226
false
12201227
}

0 commit comments

Comments
 (0)