Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix minor doc typos in SelectiveColumnReader.h #10835

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions velox/dwio/common/SelectiveColumnReader.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,14 @@ struct ScanState {
DictionaryValues dictionary;

// If the format, like ORC/DWRF has a base dictionary completed by
// local delta dictionaries over the furst one, this represents the
// local delta dictionaries over the first one, this represents the
// local values, e.g. row group dictionary in ORC. TBD: If there is
// a pattern of dictionaries completed by more dictionaries in other
// formats, this will be modeled as an vector of n DictionaryValues.
DictionaryValues dictionary2;

// Bits selecting between dictionary and dictionary2 or dictionary and
// literal. OR/DWRFC only.
// literal. ORC/DWRF only.
BufferPtr inDictionary;

// Copy of Visitor::rows_ adjusted to start at the current encoding
Expand Down
Loading