-
Notifications
You must be signed in to change notification settings - Fork 136
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
Writing dates as parquet datetime types #288
Comments
Well, underlying parquet driver doesn't support |
Is there a datetime like type that it does support such as datetimeoffset? |
yes, there is way to use datetimeoffset. let me add it. Will update. |
Did you push this update and if so how is it used? |
Yes, here is how you can control the output
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have a program that writes a list of objects of a specific type to parquet. The issue is when it is writing date properties to the parquet file they are saved as strings rather than a datetime type.
This is how I have my parser configured
This is the definition of the property in the class
public DateTime? date_reported { get; set; }
And this is a example of what the date looks in the database I am reading from
2023-01-09 00:00:00.000
And this is how it is stores in the object
The text was updated successfully, but these errors were encountered: