-
-
Notifications
You must be signed in to change notification settings - Fork 95
Implement transforms for VAST #1517
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
Conversation
ad75a50
to
9cf7f9f
Compare
6849e13
to
e2899fe
Compare
a13b422
to
0402fbb
Compare
0402fbb
to
2c3b673
Compare
ccdaad3
to
2aa8fcf
Compare
// [...] | ||
// }; | ||
|
||
#if VAST_ENABLE_ARROW > 0 |
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.
This can be rewritten as #if VAST_ENABLE_ARROW
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.
When doing this please grep for VAST_ENABLE_ARROW > 0
generally. There are a few more places.
#include "vast/system/transformer.hpp" | ||
#include "vast/table_slice.hpp" | ||
#include "vast/table_slice_builder_factory.hpp" | ||
#include "vast/type_set.hpp" |
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.
Unnecessary includes
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.
Fixing the Banners.
77a039e
to
5c28955
Compare
4e80dec
to
36089ab
Compare
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.
Accepting this now, but please add integration tests in a follow-up PR.
📔 Description
This adds an MVP implementation of "transforms" to VAST.
📝 Checklist
🎯 Review Instructions
Look at the commit overview first: Roughly the first half consists of related bugfixes and refactorings I encountered while writing the main feature, the transforms implementation itself is split by category.