Skip to content

Commit 0026bb7

Browse files
committed
Add more descriptive docs comment
1 parent 53d7930 commit 0026bb7

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
@@ -1144,6 +1144,13 @@ pub trait Dialect: Debug + Any {
11441144
}
11451145

11461146
/// Returns true if the dialect supports parsing statements without a semicolon delimiter.
1147+
///
1148+
/// If returns true, the following SQL will not parse. If returns `false` the SQL will parse
1149+
///
1150+
/// ```sql
1151+
/// SELECT 1
1152+
/// SELECT 2
1153+
/// ```
11471154
fn supports_statements_without_semicolon_delimiter(&self) -> bool {
11481155
false
11491156
}

0 commit comments

Comments
 (0)