-
Notifications
You must be signed in to change notification settings - Fork 44
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
[Feat] Support Date
and List
standard data type for GraphAr
#169
Comments
Hi @acezen , Can I try my hands on this issue ? I might get lot of questions, will ask in discord group Thanks |
Thanks for your interest in contributing to our project! We'd be happy to have you work on this issue. |
Sure!, any contribution is welcome. As @lixueclaire said, if you have any question or need help, fell free to ask~ |
Thanks ! I will take like a week to kinda understand the whole thing and setup it in local, once done will ping here for more info. Thanks and Regards |
Date
and Array
standard data type for GraphArDate
and List
standard data type for GraphAr
The |
Is your feature request related to a problem? Please describe.
As a graph format , GraphAr supports a variety of data types, including strings, numbers, and booleans. However, it does not currently support the Date and List standard data types. This issue proposes adding support for these data types to GraphAr.
Adding support for Date and Array would make GraphAr a more versatile. It would allow users to store and query dates and arrays, which are common data types in many graph database and system.
Describe the solution you'd like
The
Date
could useint32
orint64
to represent. Just unify it inparquet
andorc
;And the
List
could be useparquet
's BYTE_ARRAY andORC
's list;The
serialization
anddeserialization
strategy should be define for theData
andList
type.Additional context
This issue is a part of issue #76 and is a good first issue for beginners to get familiar with GraphAr.
The text was updated successfully, but these errors were encountered: