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 (Keyword::GLOB, BinaryOperator::Glob),
90 ] {
91 if parser.parse_keyword(keyword) {
92 let left = Box::new(expr.clone());
93 let right = Box::new(match parser.parse_expr() {
94 Ok(expr) => expr,
95 Err(e) => return Some(Err(e)),
96 });
97 return Some(Ok(Expr::BinaryOp { left, op, right }));
98 }
99 }
100 None
101 }
102
103 fn supports_in_empty_list(&self) -> bool {
104 true
105 }
106
107 fn supports_limit_comma(&self) -> bool {
108 true
109 }
110
111 fn supports_asc_desc_in_column_definition(&self) -> bool {
112 true
113 }
114
115 fn supports_dollar_placeholder(&self) -> bool {
116 true
117 }
118
119 fn supports_notnull_operator(&self) -> bool {
122 true
123 }
124
125 fn supports_comma_separated_trim(&self) -> bool {
126 true
127 }
128}