File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2027,10 +2027,10 @@ impl<'a> Parser<'a> {
2027
2027
2028
2028
/// Tries to parse the body of an [ODBC escaping sequence]
2029
2029
/// i.e. without the enclosing braces
2030
- /// Currently implemented:
2030
+ /// Currently implemented:
2031
2031
/// Scalar Function Calls
2032
2032
/// Date, Time, and Timestamp Literals
2033
- /// See https://learn.microsoft.com/en-us/sql/odbc/reference/develop-app/escape-sequences-in-odbc?view=sql-server-2017
2033
+ /// See < https://learn.microsoft.com/en-us/sql/odbc/reference/develop-app/escape-sequences-in-odbc?view=sql-server-2017>
2034
2034
fn maybe_parse_odbc_body(&mut self) -> Result<Option<Expr>, ParserError> {
2035
2035
// Attempt 1: Try to parse it as a function.
2036
2036
if let Some(expr) = self.maybe_parse_odbc_fn_body()? {
Original file line number Diff line number Diff line change @@ -16297,4 +16297,4 @@ fn test_odbc_time_date_timestamp_support() {
16297
16297
fn test_invalid_odbc_literal_fails() {
16298
16298
let sql = "SELECT {tt '14:12:01'} FROM foo";
16299
16299
let _ = all_dialects().verified_stmt(sql);
16300
- }
16300
+ }
You can’t perform that action at this time.
0 commit comments