mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-10-21 19:21:46 +00:00
Support create index with clause (#1389)
Co-authored-by: Ifeanyi Ubah <ify1992@yahoo.com> Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org>
This commit is contained in:
parent
d64beea4d4
commit
4d52ee7280
7 changed files with 92 additions and 0 deletions
|
@ -509,6 +509,12 @@ pub trait Dialect: Debug + Any {
|
|||
fn allow_extract_single_quotes(&self) -> bool {
|
||||
false
|
||||
}
|
||||
|
||||
/// Does the dialect support with clause in create index statement?
|
||||
/// e.g. `CREATE INDEX idx ON t WITH (key = value, key2)`
|
||||
fn supports_create_index_with_clause(&self) -> bool {
|
||||
false
|
||||
}
|
||||
}
|
||||
|
||||
/// This represents the operators for which precedence must be defined
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue