We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53d7930 commit 0026bb7Copy full SHA for 0026bb7
1 file changed
src/dialect/mod.rs
@@ -1144,6 +1144,13 @@ pub trait Dialect: Debug + Any {
1144
}
1145
1146
/// 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
+ /// ```
1154
fn supports_statements_without_semicolon_delimiter(&self) -> bool {
1155
false
1156
0 commit comments