We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7d8c33 commit bcfbda6Copy full SHA for bcfbda6
src/parser/mod.rs
@@ -1394,6 +1394,9 @@ impl<'a> Parser<'a> {
1394
1395
expr = self.parse_compound_expr(expr, vec![])?;
1396
1397
+ // Parse an optional collation cast operator following `expr`.
1398
+ //
1399
+ // For example (MSSQL): t1.a COLLATE Latin1_General_CI_AS
1400
if !self.in_column_definition_state() && self.parse_keyword(Keyword::COLLATE) {
1401
expr = Expr::Collate {
1402
expr: Box::new(expr),
0 commit comments