| 283 | Schema from_; |
| 284 | |
| 285 | void ProjectableTo(FieldVector to) { |
| 286 | ARROW_EXPECT_OK(CheckProjectable(from_, Schema(to))); |
| 287 | } |
| 288 | |
| 289 | void NotProjectableTo(FieldVector to, std::string substr = "") { |
| 290 | EXPECT_RAISES_WITH_MESSAGE_THAT(TypeError, testing::HasSubstr(substr), |
no test coverage detected