-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Fix parsing array struct when repetition_type is 'REPEATED' #10753
Conversation
✅ Deploy Preview for meta-velox canceled.
|
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.
Can you add a test? Since you already check in the data file, I guess you just miss checking in the test code
Updated. But seems data read also have some problems. Let me do try a further fix. |
@Yuhta Fixed. Please help review again. Thanks. |
b345f25
to
ca70196
Compare
@kgpai has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
Conbench analyzed the 1 benchmark run on commit There were no benchmark performance regressions. 🎉 The full Conbench report has more details. |
…incubator#10753) Summary: Velox fails to parse array struct in attached example file as it doesn't consider `RowType` in when `repetition_type` is `REPEATED`. Pull Request resolved: facebookincubator#10753 Reviewed By: Yuhta Differential Revision: D61862384 Pulled By: kgpai fbshipit-source-id: c15338630a0a952acc80be6c2e91857e42cb9350
…incubator#10753) Summary: Velox fails to parse array struct in attached example file as it doesn't consider `RowType` in when `repetition_type` is `REPEATED`. Pull Request resolved: facebookincubator#10753 Reviewed By: Yuhta Differential Revision: D61862384 Pulled By: kgpai fbshipit-source-id: c15338630a0a952acc80be6c2e91857e42cb9350
Velox fails to parse array struct in attached example file as it doesn't consider
RowType
in whenrepetition_type
isREPEATED
.