| 564 | } |
| 565 | |
| 566 | void DebugMessageHandler::SendBeginDatabaseContents(uint32_t databaseId) |
| 567 | { |
| 568 | BackendToDebugger msg; |
| 569 | auto beginMsg = msg.mutable_begindatabasecontents(); |
| 570 | beginMsg->set_database_id(databaseId); |
| 571 | Send(msg); |
| 572 | Debug(" <-- BkBeginDatabaseContents()"); |
| 573 | } |
| 574 | |
| 575 | void DebugMessageHandler::SendDatabaseRow(uint32_t databaseId, TupleVec * row) |
| 576 | { |
no test coverage detected