wgtmac opened a new pull request, #1557:
URL: https://github.com/apache/orc/pull/1557
### What changes were proposed in this pull request?
Remove default parameters from one overload of Type::createRowBatch to
eliminate ambiguity.
### Why are the changes needed?
The overloads of Type::createRowBatch are ambiguous when default parameters
are used.
```cpp
virtual std::unique_ptr<ColumnVectorBatch> createRowBatch(
uint64_t size, MemoryPool& pool, bool encoded = false) const = 0;
virtual std::unique_ptr<ColumnVectorBatch> createRowBatch(
uint64_t size, MemoryPool& pool, bool encoded = false,
bool useTightNumericVector = false) const = 0;
```
### How was this patch tested?
Make sure all tests pass.
--
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]