| 2767 | } |
| 2768 | |
| 2769 | void ClientRequestState::AddTableResetHints(const TConvertTableRequest& params, |
| 2770 | Status* status) const { |
| 2771 | string table_reset_hint("Your table might have been renamed. To reset the name " |
| 2772 | "try running:\n" + params.reset_table_name_query + ";"); |
| 2773 | status->MergeStatus(Status(table_reset_hint)); |
| 2774 | } |
| 2775 | |
| 2776 | int64_t ClientRequestState::num_rows_fetched_counter() const { |
| 2777 | if (LIKELY(num_rows_fetched_counter_ != nullptr)) { |
nothing calls this directly
no test coverage detected