-
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
Feature/planop parameter serialization #341
base: master
Are you sure you want to change the base?
Feature/planop parameter serialization #341
Conversation
* use develop branch of cereal to support name-value pairs for loading * add Json::Value and std::optional as serializable types (load only) * add a serialization macro
…zation to TableLoad and SimpleTableScan.
Can one of the admins verify this patch? |
add to whitelist |
Test failed. Build Log
|
Test PASSED! |
bool _binary; | ||
bool _unsafe; | ||
bool _raw; | ||
std::optional<std::string> _header_file_name; |
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.
Why do we need to list the members of the parameter struct twice?
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 wouldn't necessarily need them twice, we could just (as you suggested below) use the Parameters struct as member.
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.
Done in fe50fff.
Test PASSED! |
Adds serializable parameter structs for PlanOperations.