We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 484c912 commit 4154975Copy full SHA for 4154975
src/parser/mod.rs
@@ -16590,7 +16590,7 @@ mod tests {
16590
if let Statement::CreateTable(v) = &ast[0] {
16591
assert_eq!(
16592
v.columns[0].options[0].option,
16593
- ColumnOption::Srid(Expr::value(Value::Number("4326".to_string(), false)))
+ ColumnOption::Srid(Expr::value(Value::Number("4326".parse().unwrap(), false)))
16594
);
16595
}
16596
0 commit comments