-
Notifications
You must be signed in to change notification settings - Fork 566
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Snowflake/BigQuery TRIM. #975
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1302,6 +1302,7 @@ impl<'a> Parser<'a> { | |
/// ```sql | ||
/// TRIM ([WHERE] ['text' FROM] 'text') | ||
/// TRIM ('text') | ||
/// TRIM(<expr>, [, characters]) -- only Snowflake or BigQuery | ||
/// ``` | ||
pub fn parse_trim_expr(&mut self) -> Result<Expr, ParserError> { | ||
self.expect_token(&Token::LParen)?; | ||
|
@@ -1323,13 +1324,26 @@ impl<'a> Parser<'a> { | |
expr: Box::new(expr), | ||
trim_where, | ||
trim_what: Some(trim_what), | ||
trim_characters: None, | ||
}) | ||
} else if self.consume_token(&Token::Comma) | ||
&& dialect_of!(self is SnowflakeDialect | BigQueryDialect) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think the general pattern for this crate is to also include There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @alamb .. added |
||
{ | ||
let characters = self.parse_comma_separated(Parser::parse_expr)?; | ||
self.expect_token(&Token::RParen)?; | ||
Ok(Expr::Trim { | ||
expr: Box::new(expr), | ||
trim_where: None, | ||
trim_what: None, | ||
trim_characters: Some(characters), | ||
}) | ||
} else { | ||
self.expect_token(&Token::RParen)?; | ||
Ok(Expr::Trim { | ||
expr: Box::new(expr), | ||
trim_where, | ||
trim_what: None, | ||
trim_characters: None, | ||
}) | ||
} | ||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5215,6 +5215,30 @@ fn parse_trim() { | |
ParserError::ParserError("Expected ), found: 'xyz'".to_owned()), | ||
parse_sql_statements("SELECT TRIM(FOO 'xyz' FROM 'xyzfooxyz')").unwrap_err() | ||
); | ||
|
||
//keep Snowflake/BigQuery TRIM syntax failing | ||
let all_expected_snowflake = TestedDialects { | ||
dialects: vec![ | ||
Box::new(GenericDialect {}), | ||
Box::new(PostgreSqlDialect {}), | ||
Box::new(MsSqlDialect {}), | ||
Box::new(AnsiDialect {}), | ||
//Box::new(SnowflakeDialect {}), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. make sure it is still failing on others than snowflake. |
||
Box::new(HiveDialect {}), | ||
Box::new(RedshiftSqlDialect {}), | ||
Box::new(MySqlDialect {}), | ||
//Box::new(BigQueryDialect {}), | ||
Box::new(SQLiteDialect {}), | ||
Box::new(DuckDbDialect {}), | ||
], | ||
options: None, | ||
}; | ||
assert_eq!( | ||
ParserError::ParserError("Expected ), found: 'a'".to_owned()), | ||
all_expected_snowflake | ||
.parse_sql_statements("SELECT TRIM('xyz', 'a')") | ||
.unwrap_err() | ||
); | ||
} | ||
|
||
#[test] | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
print trim characters after expression if there are