| 980 | } |
| 981 | |
| 982 | void AssertNoAugmentedFields(std::shared_ptr<Scanner> scanner) { |
| 983 | ASSERT_OK_AND_ASSIGN(auto table, scanner.get()->ToTable()); |
| 984 | auto columns = table.get()->ColumnNames(); |
| 985 | EXPECT_TRUE(std::none_of(columns.begin(), columns.end(), [](std::string& x) { |
| 986 | return x == "__fragment_index" || x == "__batch_index" || |
| 987 | x == "__last_in_fragment" || x == "__filename"; |
| 988 | })); |
| 989 | } |
| 990 | |
| 991 | void AssertScanBatchesUnorderedEqualRepetitionsOf( |
| 992 | std::shared_ptr<Scanner> scanner, std::shared_ptr<RecordBatch> batch, |
nothing calls this directly
no test coverage detected