mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-20 06:00:15 +00:00
Fixed the bug that the access parsing is wrong when multiple query conditions contain arrays or map. (#433)
This commit is contained in:
parent
6b55e51101
commit
497a3b0e1b
2 changed files with 71 additions and 21 deletions
|
@ -1285,7 +1285,7 @@ impl<'a> Parser<'a> {
|
|||
Token::Mul | Token::Div | Token::Mod | Token::StringConcat => Ok(40),
|
||||
Token::DoubleColon => Ok(50),
|
||||
Token::ExclamationMark => Ok(50),
|
||||
Token::LBracket => Ok(10),
|
||||
Token::LBracket => Ok(50),
|
||||
_ => Ok(0),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue