You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: handle lowercase bools and wide integers in sql_string_to_json
- Accept case-insensitive TRUE/FALSE (serde_json::Value::Bool produces
lowercase "true"/"false")
- Try u64 parse before f64 to avoid precision loss on values above
i64::MAX
- Only attempt f64 parse when string contains '.', 'e', or 'E'
- Add test cases for both edge cases
0 commit comments