| 42 | namespace { |
| 43 | |
| 44 | void appendSerializedInt32(std::string& bytes, int32_t value) { |
| 45 | bytes.append(reinterpret_cast<const char*>(&value), sizeof(value)); |
| 46 | } |
| 47 | |
| 48 | class ContainerRowSerdeTest : public testing::Test, |
| 49 | public bolt::test::VectorTestBase { |