| 202 | partition_expression_(std::move(partition_expression)) {} |
| 203 | |
| 204 | Result<std::shared_ptr<ScannerBuilder>> Dataset::NewScan() { |
| 205 | return std::make_shared<ScannerBuilder>(this->shared_from_this()); |
| 206 | } |
| 207 | |
| 208 | Result<FragmentIterator> Dataset::GetFragments() { |
| 209 | return GetFragments(compute::literal(true)); |
no outgoing calls