-
Notifications
You must be signed in to change notification settings - Fork 483
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
ORC-313,ORC-317: Check types in footer #225
Conversation
8d7a668
to
a134550
Compare
We need to verify the subtype count of LIST and MAP types. Otherwise, the ill types will lead the c++ reader to crash. The java reader also has this problem.
224ba33
to
0f17474
Compare
Hi @omalley @majetideepak, this PR is ready for review. Could you have a look? |
@stiga-huang can you open a separate PR or each JIRA? Thanks. |
@majetideepak OK. When I separate the PR, I found orc-test failed in TestWriter.writeTimestamp (ORC-320). I might need to fix that first. |
@majetideepak I opened #229 for ORC-313 |
@stiga-huang I will look into these this week. Can you fix the title of this PR? Thanks! |
@majetideepak To be clean, I open #231 for ORC-317. I'd like to close this PR. Thanks for your review! |
We need to verify the subtype count of LIST and MAP types. Otherwise,
the ill types will lead the c++ reader to crash.
The java reader also has this problem.