| 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", |
| 67 | "\n", "N/A\n", "1233456789.123456789"}; |
| 68 | return BuildFromExamples(base_rows, num_rows); |
| 69 | } |
| 70 | |
| 71 | static std::shared_ptr<BlockParser> BuildStringData(int32_t num_rows) { |
| 72 | return BuildDecimal128Data(num_rows); |
no test coverage detected