Skip to content

Commit d7325d9

Browse files
committed
Add more descriptive docs comment
1 parent 6da1728 commit d7325d9

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
@@ -1665,6 +1665,13 @@ pub trait Dialect: Debug + Any {
16651665
}
16661666

16671667
/// Returns true if the dialect supports parsing statements without a semicolon delimiter.
1668+
///
1669+
/// If returns true, the following SQL will not parse. If returns `false` the SQL will parse
1670+
///
1671+
/// ```sql
1672+
/// SELECT 1
1673+
/// SELECT 2
1674+
/// ```
16681675
fn supports_statements_without_semicolon_delimiter(&self) -> bool {
16691676
false
16701677
}

0 commit comments

Comments
 (0)