We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6da1728 commit d7325d9Copy full SHA for d7325d9
1 file changed
src/dialect/mod.rs
@@ -1665,6 +1665,13 @@ pub trait Dialect: Debug + Any {
1665
}
1666
1667
/// 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
+ /// ```
1675
fn supports_statements_without_semicolon_delimiter(&self) -> bool {
1676
false
1677
0 commit comments