-
-
Notifications
You must be signed in to change notification settings - Fork 302
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failed to parse NaiveDateTime #436
Comments
The format must be as follows: let dt = NaiveDate::from_ymd(2015, 9, 18).and_hms(23, 56, 4);
assert_eq!("2015-09-18T23:56:04".parse::<NaiveDateTime>(), Ok(dt)); |
It's a bit confusing that the example schema is generated with "2015-09-18 23:56:04". Edit: |
Released in |
You are awesome! |
Expected Behavior
Parsing of NaiveDateTime Object
Actual Behavior
Does not parse successfully
Error message:
Steps to Reproduce the Problem
The text was updated successfully, but these errors were encountered: