Skip to content

Commit a69ec0f

Browse files
committed
update
1 parent 62189bc commit a69ec0f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tests/sqlparser_common.rs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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
},

0 commit comments

Comments
 (0)