use crate::dialect::Dialect;
#[derive(Debug, Default)]
pub struct GenericDialect;
impl Dialect for GenericDialect {
fn is_delimited_identifier_start(&self, ch: char) -> bool {
ch == '"' || ch == '`'
}
fn is_identifier_start(&self, ch: char) -> bool {
ch.is_alphabetic() || ch == '_' || ch == '#' || ch == '@'
}
fn is_identifier_part(&self, ch: char) -> bool {
ch.is_alphabetic()
|| ch.is_ascii_digit()
|| ch == '@'
|| ch == '$'
|| ch == '#'
|| ch == '_'
}
fn supports_group_by_expr(&self) -> bool {
true
}
fn supports_start_transaction_modifier(&self) -> bool {
true
}
}