mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-10-12 06:52:02 +00:00
Add support for DEFERRED, IMMEDIATE, and EXCLUSIVE in SQLite's BEGIN TRANSACTION command (#1067)
This commit is contained in:
parent
40bc407799
commit
1baec96685
7 changed files with 94 additions and 2 deletions
|
@ -137,6 +137,10 @@ pub trait Dialect: Debug + Any {
|
|||
fn supports_in_empty_list(&self) -> bool {
|
||||
false
|
||||
}
|
||||
/// Returns true if the dialect supports `BEGIN {DEFERRED | IMMEDIATE | EXCLUSIVE} [TRANSACTION]` statements
|
||||
fn supports_start_transaction_modifier(&self) -> bool {
|
||||
false
|
||||
}
|
||||
/// Returns true if the dialect has a CONVERT function which accepts a type first
|
||||
/// and an expression second, e.g. `CONVERT(varchar, 1)`
|
||||
fn convert_type_before_value(&self) -> bool {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue