| 501 | using Base = UnionBuilderTest<SparseUnionBuilder>; |
| 502 | |
| 503 | void AppendInt(int8_t i) override { |
| 504 | Base::AppendInt(i); |
| 505 | ASSERT_OK(str_builder->AppendEmptyValue()); |
| 506 | ASSERT_OK(dbl_builder->AppendEmptyValue()); |
| 507 | } |
| 508 | |
| 509 | void AppendString(const std::string& str) override { |
| 510 | Base::AppendString(str); |
nothing calls this directly
no test coverage detected