mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-27 17:34:05 +00:00
update
This commit is contained in:
parent
62189bcde6
commit
a69ec0f006
1 changed files with 6 additions and 2 deletions
|
@ -10968,7 +10968,9 @@ fn parse_pivot_table() {
|
|||
Expr::Value(
|
||||
(Value::SingleQuotedString("John".to_string())).with_empty_span()
|
||||
),
|
||||
Expr::Value((Value::Number("30".into(), false)).with_empty_span()),
|
||||
Expr::Value(
|
||||
(Value::Number("30".parse().unwrap(), false)).with_empty_span()
|
||||
),
|
||||
]),
|
||||
alias: Some(Ident::new("c1"))
|
||||
},
|
||||
|
@ -10977,7 +10979,9 @@ fn parse_pivot_table() {
|
|||
Expr::Value(
|
||||
(Value::SingleQuotedString("Mike".to_string())).with_empty_span()
|
||||
),
|
||||
Expr::Value((Value::Number("40".into(), false)).with_empty_span()),
|
||||
Expr::Value(
|
||||
(Value::Number("40".parse().unwrap(), false)).with_empty_span()
|
||||
),
|
||||
]),
|
||||
alias: Some(Ident::new("c2"))
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue