We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9781c0 commit 8783f09Copy full SHA for 8783f09
src/parser/mod.rs
@@ -16584,7 +16584,7 @@ mod tests {
16584
if let Statement::CreateTable(v) = &ast[0] {
16585
assert_eq!(
16586
v.columns[0].options[0].option,
16587
- ColumnOption::Srid(Expr::value(Value::Number("4326".to_string(), false)))
+ ColumnOption::Srid(Expr::value(Value::Number("4326".parse().unwrap(), false)))
16588
);
16589
}
16590
0 commit comments