mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-31 03:07:20 +00:00
Fix SUBSTRING from/to argument construction for mssql (#947)
This commit is contained in:
parent
173a6db818
commit
8bbb85356c
7 changed files with 153 additions and 24 deletions
|
@ -1271,7 +1271,8 @@ fn parse_substring_in_select() {
|
|||
quote_style: None
|
||||
})),
|
||||
substring_from: Some(Box::new(Expr::Value(number("0")))),
|
||||
substring_for: Some(Box::new(Expr::Value(number("1"))))
|
||||
substring_for: Some(Box::new(Expr::Value(number("1")))),
|
||||
special: false,
|
||||
})],
|
||||
into: None,
|
||||
from: vec![TableWithJoins {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue