| 1189 | } |
| 1190 | |
| 1191 | void TestWrite() { |
| 1192 | auto reader = this->GetRandomData(schema({field("f64", float64())})); |
| 1193 | auto expected = this->MakeBufferSource(reader.get()); |
| 1194 | auto written = this->WriteToBuffer(reader->schema()); |
| 1195 | AssertBufferEqual(*written, *expected->buffer()); |
| 1196 | } |
| 1197 | |
| 1198 | void TestCountRows() { |
| 1199 | auto options = std::make_shared<ScanOptions>(); |
nothing calls this directly
no test coverage detected