mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-09-10 16:06:22 +00:00
Merge pull request #162 from alex-dukhno/derive-defaul-for-generic-dialect
derive default for GenericDialect
This commit is contained in:
commit
5fe9060d4e
1 changed files with 2 additions and 2 deletions
|
@ -12,8 +12,8 @@
|
|||
|
||||
use crate::dialect::Dialect;
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct GenericDialect {}
|
||||
#[derive(Debug, Default)]
|
||||
pub struct GenericDialect;
|
||||
|
||||
impl Dialect for GenericDialect {
|
||||
fn is_identifier_start(&self, ch: char) -> bool {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue