| 51 | } |
| 52 | |
| 53 | static std::shared_ptr<BlockParser> BuildInt64Data(int32_t num_rows) { |
| 54 | const std::vector<std::string> base_rows = {"123\n", "4\n", "-317005557\n", |
| 55 | "\n", "N/A\n", "0\n"}; |
| 56 | return BuildFromExamples(base_rows, num_rows); |
| 57 | } |
| 58 | |
| 59 | static std::shared_ptr<BlockParser> BuildFloatData(int32_t num_rows) { |
| 60 | const std::vector<std::string> base_rows = {"0\n", "123.456\n", "-3170.55766\n", "\n", |
no test coverage detected