Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
0.4.0
-
None
Description
Drillbit may send a query state message with empty record batch. For example, Drillbit will send a COMPLETED message to the client after a query is completed. The C++ client ignored the message for now. We should consume the message and send an ack message back to the server.
The query state could be:
// protocol/src/main/protobuf/UserBitShared.proto enum QueryState { PENDING = 0; RUNNING = 1; COMPLETED = 2; CANCELED = 3; FAILED = 4; UNKNOWN_QUERY = 5; }
Attachments
Attachments
Issue Links
- depends upon
-
DRILL-1511 C++ Client. Fix compiling issues in DRILL-1297 patch on clang
- Resolved
- is depended upon by
-
DRILL-1498 Drill Client to handle handshake messages in handleRead and to ignore spurious results
- Resolved