mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-09-10 07:56:20 +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;
|
use crate::dialect::Dialect;
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug, Default)]
|
||||||
pub struct GenericDialect {}
|
pub struct GenericDialect;
|
||||||
|
|
||||||
impl Dialect for GenericDialect {
|
impl Dialect for GenericDialect {
|
||||||
fn is_identifier_start(&self, ch: char) -> bool {
|
fn is_identifier_start(&self, ch: char) -> bool {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue