-
Notifications
You must be signed in to change notification settings - Fork 240
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
support parquet write arrays #2582
Conversation
build |
Signed-off-by: Bobby Wang <wbo4958@gmail.com>
84f64db
to
f5088ce
Compare
build |
@razajafri could you help to review this PR? |
@@ -2828,7 +2829,8 @@ object GpuOverrides { | |||
"Writing data", | |||
ExecChecks((TypeSig.commonCudfTypes + | |||
TypeSig.DECIMAL.withPsNote(TypeEnum.DECIMAL, "Only supported for Parquet") + | |||
TypeSig.STRUCT.withPsNote(TypeEnum.STRUCT, "Only supported for Parquet")).nested(), | |||
TypeSig.STRUCT.withPsNote(TypeEnum.STRUCT, "Only supported for Parquet") + |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: would be good to have an API that takes an array of TypeEnum
so we have to duplicate the message Only supported for Parquet
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can create a s follow-on issue for this as an improvement if you want
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok, Thx @razajafri, Will create a follow-on issue for this
Signed-off-by: Bobby Wang <wbo4958@gmail.com>
This PR enables parquet write for arrays. Please refer to #2307