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
There was support for chrono::NaiveDateTime in parquet_derive but its test cases were hidden behind a cargo feature flag and must have been ignored in tests. When upgrading the parquet library and dependencies I got this type error:
7 | #[derive(Queryable, Debug, ParquetRecordWriter, ParquetRecordSchema)]
| ^^^^^^^^^^^^^^^^^^^
|
= help: message: not implemented: NaiveDateTime currently is not supported
To Reproduce
Derive a record writer implementation for this struct:
Describe the bug
There was support for
chrono::NaiveDateTime
in parquet_derive but its test cases were hidden behind a cargo feature flag and must have been ignored in tests. When upgrading the parquet library and dependencies I got this type error:To Reproduce
Derive a record writer implementation for this struct:
Expected behavior
The
NaiveDateTime
should generate a schema which matches this text version (note the converted type):Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: