| 23 | return table_basic_pb.SerializeAsString(); |
| 24 | } |
| 25 | void StatsTableBasic::deserialize(std::string_view blob) |
| 26 | { |
| 27 | table_basic_pb.ParseFromArray(blob.data(), static_cast<int>(blob.size())); |
| 28 | } |
| 29 | void StatsTableBasic::setRowCount(int64_t row_count) |
| 30 | { |
| 31 | table_basic_pb.set_row_count(row_count); |