File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -10968,7 +10968,9 @@ fn parse_pivot_table() {
1096810968 Expr::Value(
1096910969 (Value::SingleQuotedString("John".to_string())).with_empty_span()
1097010970 ),
10971- Expr::Value((Value::Number("30".into(), false)).with_empty_span()),
10971+ Expr::Value(
10972+ (Value::Number("30".parse().unwrap(), false)).with_empty_span()
10973+ ),
1097210974 ]),
1097310975 alias: Some(Ident::new("c1"))
1097410976 },
@@ -10977,7 +10979,9 @@ fn parse_pivot_table() {
1097710979 Expr::Value(
1097810980 (Value::SingleQuotedString("Mike".to_string())).with_empty_span()
1097910981 ),
10980- Expr::Value((Value::Number("40".into(), false)).with_empty_span()),
10982+ Expr::Value(
10983+ (Value::Number("40".parse().unwrap(), false)).with_empty_span()
10984+ ),
1098110985 ]),
1098210986 alias: Some(Ident::new("c2"))
1098310987 },
You can’t perform that action at this time.
0 commit comments