| 546 | using Base = UnionBuilderTest<SparseUnionBuilder>; |
| 547 | |
| 548 | void AppendInt(int8_t i) override { |
| 549 | Base::AppendInt(i); |
| 550 | ASSERT_OK(str_builder->AppendEmptyValue()); |
| 551 | ASSERT_OK(dbl_builder->AppendEmptyValue()); |
| 552 | } |
| 553 | |
| 554 | void AppendString(const std::string& str) override { |
| 555 | Base::AppendString(str); |
nothing calls this directly
no test coverage detected