This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/main by this push:
new bbb1f074d MINOR: Fix a typo in `ColumnReader.cc`
bbb1f074d is described below
commit bbb1f074d537bd482b7aeeab4d7dc65760434e40
Author: Smith Cruise <[email protected]>
AuthorDate: Tue Jan 2 12:58:59 2024 -0800
MINOR: Fix a typo in `ColumnReader.cc`
### What changes were proposed in this pull request?
This PR aims to fix a typo in `ColumnReader.cc`.
### Why are the changes needed?
To fix a typo.
### How was this patch tested?
Manual review.
Closes #1717 from Smith-Cruise/typo.
Authored-by: Smith Cruise <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
c++/src/ColumnReader.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/c++/src/ColumnReader.cc b/c++/src/ColumnReader.cc
index dc0ecb147..515b0b09d 100644
--- a/c++/src/ColumnReader.cc
+++ b/c++/src/ColumnReader.cc
@@ -830,7 +830,7 @@ namespace orc {
std::vector<std::unique_ptr<ColumnReader>> children;
public:
- StructColumnReader(const Type& type, StripeStreams& stipe, bool
useTightNumericVector = false,
+ StructColumnReader(const Type& type, StripeStreams& stripe, bool
useTightNumericVector = false,
bool throwOnSchemaEvolutionOverflow = false);
uint64_t skip(uint64_t numValues) override;