You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It combines the result of query (RecordBatches and Stream) and non-query (AffectedRows) together. After refactoring to region engine and region server, those requests are handled separately in two APIs. RegionEngine::handle_request() only handles non-query requests, thus the return type can be simplified to only contains the AffectedRows branch.
Implementation challenges
No response
The text was updated successfully, but these errors were encountered:
What type of enhancement is this?
Tech debt reduction
What does the enhancement do?
This interface inherits
common_query::Output
from the previous table engine.It combines the result of query (
RecordBatches
andStream
) and non-query (AffectedRows
) together. After refactoring to region engine and region server, those requests are handled separately in two APIs.RegionEngine::handle_request()
only handles non-query requests, thus the return type can be simplified to only contains theAffectedRows
branch.Implementation challenges
No response
The text was updated successfully, but these errors were encountered: