sqlparser/dialect/
sqlite.rs1#[cfg(not(feature = "std"))]
19use alloc::boxed::Box;
20
21use crate::ast::BinaryOperator;
22use crate::ast::{Expr, Statement};
23use crate::dialect::Dialect;
24use crate::keywords::Keyword;
25use crate::parser::{Parser, ParserError};
26
27#[derive(Debug, Default, Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)]
34#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
35pub struct SQLiteDialect {}
36
37impl Dialect for SQLiteDialect {
38 fn is_delimited_identifier_start(&self, ch: char) -> bool {
42 ch == '`' || ch == '"' || ch == '['
43 }
44
45 fn identifier_quote_style(&self, _identifier: &str) -> Option<char> {
46 Some('`')
47 }
48
49 fn is_identifier_start(&self, ch: char) -> bool {
50 ch.is_ascii_lowercase()
52 || ch.is_ascii_uppercase()
53 || ch == '_'
54 || ('\u{007f}'..='\u{ffff}').contains(&ch)
55 }
56
57 fn supports_filter_during_aggregation(&self) -> bool {
58 true
59 }
60
61 fn supports_start_transaction_modifier(&self) -> bool {
62 true
63 }
64
65 fn is_identifier_part(&self, ch: char) -> bool {
66 self.is_identifier_start(ch) || ch.is_ascii_digit()
67 }
68
69 fn parse_statement(&self, parser: &mut Parser) -> Option<Result<Statement, ParserError>> {
70 if parser.parse_keyword(Keyword::REPLACE) {
71 parser.prev_token();
72 Some(parser.parse_insert(parser.get_current_token().clone()))
73 } else {
74 None
75 }
76 }
77
78 fn parse_infix(
79 &self,
80 parser: &mut crate::parser::Parser,
81 expr: &crate::ast::Expr,
82 _precedence: u8,
83 ) -> Option<Result<crate::ast::Expr, ParserError>> {
84 for (keyword, op) in [
87 (Keyword::REGEXP, BinaryOperator::Regexp),
88 (Keyword::MATCH, BinaryOperator::Match),
89 ] {
90 if parser.parse_keyword(keyword) {
91 let left = Box::new(expr.clone());
92 let right = Box::new(match parser.parse_expr() {
93 Ok(expr) => expr,
94 Err(e) => return Some(Err(e)),
95 });
96 return Some(Ok(Expr::BinaryOp { left, op, right }));
97 }
98 }
99 None
100 }
101
102 fn supports_in_empty_list(&self) -> bool {
103 true
104 }
105
106 fn supports_limit_comma(&self) -> bool {
107 true
108 }
109
110 fn supports_asc_desc_in_column_definition(&self) -> bool {
111 true
112 }
113
114 fn supports_dollar_placeholder(&self) -> bool {
115 true
116 }
117
118 fn supports_notnull_operator(&self) -> bool {
121 true
122 }
123
124 fn supports_comma_separated_trim(&self) -> bool {
125 true
126 }
127}