mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-28 18:04: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(
|
Expr::Value(
|
||||||
(Value::SingleQuotedString("John".to_string())).with_empty_span()
|
(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"))
|
alias: Some(Ident::new("c1"))
|
||||||
},
|
},
|
||||||
|
@ -10977,7 +10979,9 @@ fn parse_pivot_table() {
|
||||||
Expr::Value(
|
Expr::Value(
|
||||||
(Value::SingleQuotedString("Mike".to_string())).with_empty_span()
|
(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"))
|
alias: Some(Ident::new("c2"))
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue