| 173 | } |
| 174 | |
| 175 | void CppConsolidationPlanFx::check_last_error(std::string expected) { |
| 176 | const char* msg = "unset"; |
| 177 | tiledb_error_t* err{nullptr}; |
| 178 | tiledb_ctx_get_last_error(ctx_.ptr().get(), &err); |
| 179 | if (err != nullptr) { |
| 180 | tiledb_error_message(err, &msg); |
| 181 | } |
| 182 | |
| 183 | CHECK(msg == expected); |
| 184 | } |
| 185 | |
| 186 | tiledb::sm::ConsolidationPlan CppConsolidationPlanFx::call_handler( |
| 187 | uint64_t fragment_size, |
nothing calls this directly
no test coverage detected