| 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", |
| 61 | "N/A\n"}; |
| 62 | return BuildFromExamples(base_rows, num_rows); |
| 63 | } |
| 64 | |
| 65 | static std::shared_ptr<BlockParser> BuildDecimal128Data(int32_t num_rows) { |
| 66 | const std::vector<std::string> base_rows = {"0\n", "123.456\n", "-3170.55766\n", |
no test coverage detected