mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-10-10 05:52:13 +00:00
Extended dialect triat to support numeric prefixed identifiers (#1188)
Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org>
This commit is contained in:
parent
8e64b73e9d
commit
5ea9c01bb2
4 changed files with 68 additions and 5 deletions
|
@ -185,6 +185,11 @@ pub trait Dialect: Debug + Any {
|
|||
fn supports_named_fn_args_with_eq_operator(&self) -> bool {
|
||||
false
|
||||
}
|
||||
/// Returns true if the dialect supports identifiers starting with a numeric
|
||||
/// prefix such as tables named: `59901_user_login`
|
||||
fn supports_numeric_prefix(&self) -> bool {
|
||||
false
|
||||
}
|
||||
/// Returns true if the dialects supports specifying null treatment
|
||||
/// as part of a window function's parameter list. As opposed
|
||||
/// to after the parameter list.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue