| 92 | } |
| 93 | |
| 94 | std::shared_ptr<Schema> GetSchema() { |
| 95 | static std::shared_ptr<Schema> s = schema({field("a", int32()), field("b", boolean())}); |
| 96 | return s; |
| 97 | } |
| 98 | |
| 99 | size_t GetBytesForSchema() { return sizeof(int32_t) + sizeof(bool); } |
| 100 |
no test coverage detected