-
Notifications
You must be signed in to change notification settings - Fork 605
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
schemeshard: forward declare events in a core header for operations #11655
schemeshard: forward declare events in a core header for operations #11655
Conversation
⚪ Test history | Ya make output | Test bloat
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
⚪ Test history | Ya make output | Test bloat
⚪ Test history | Ya make output | Test bloat | Test bloat
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
Switch
schemeshard_operation_part.h
to forward declarations of component events.Move component specific header includes from
schemeshard_operation_part.h
to relevant suboperation modules.Event definitions often use component specific types and definitions which require dragging along component specific headers. As a result, any schemeshard suboperation module (which have to include base header
schemeshard_operation_part.h
) transitively include headers from all components for all scheme suboperations. Which is a bit excessive.Made possible by #10685.
This is part of "improve schemeshard operation build-time" effort (#10633).
Changelog category