We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1fe02e commit f68491fCopy full SHA for f68491f
1 file changed
src/dialect/mod.rs
@@ -1215,6 +1215,13 @@ pub trait Dialect: Debug + Any {
1215
}
1216
1217
/// 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
+ /// ```
1225
fn supports_statements_without_semicolon_delimiter(&self) -> bool {
1226
false
1227
0 commit comments