| 63 | }; |
| 64 | |
| 65 | TableBuilder::TableBuilder(const Options& options, WritableFile* file) |
| 66 | : rep_(new Rep(options, file)) { |
| 67 | if (rep_->filter_block != nullptr) { |
| 68 | rep_->filter_block->StartBlock(0); |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | TableBuilder::~TableBuilder() { |
| 73 | assert(rep_->closed); // Catch errors where caller forgot to call Finish() |
nothing calls this directly
no test coverage detected