sanjibansg commented on a change in pull request #12560:
URL: https://github.com/apache/arrow/pull/12560#discussion_r825583080
##########
File path: cpp/src/arrow/dataset/scanner_test.cc
##########
@@ -128,6 +128,18 @@ class TestScanner : public
DatasetFixtureMixinWithParam<TestScannerParams> {
AssertScanBatchesEquals(expected.get(), scanner.get());
}
+ void AssertScanForAugmentedFields(std::shared_ptr<Scanner> scanner) {
+ auto result = scanner.get()->ToTable();
+ if (result.ok()) {
Review comment:
I am not very sure about what you are asking. Here, we are just checking
whether the `ToTable()` method returns `Result::OK` by calling the `ok()`
method so that we can proceed with the test.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]