fix typos

This commit is contained in:
Anton Popov 2023-08-29 14:21:58 +00:00
parent 02391eafe1
commit 7bc5627912
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ public:
/// Returns true if tasks are returned in the same order as the order of ranges passed to pool /// Returns true if tasks are returned in the same order as the order of ranges passed to pool
virtual bool preservesOrderOfRanges() const = 0; virtual bool preservesOrderOfRanges() const = 0;
/// task_idx is an implentation defined identifier that helps /// task_idx is an implementation defined identifier that helps
/// to get required task. E.g. it may be number of thread, index of /// to get required task. E.g. it may be number of thread, index of
virtual MergeTreeReadTaskPtr getTask(size_t task_idx, MergeTreeReadTask * previous_task) = 0; virtual MergeTreeReadTaskPtr getTask(size_t task_idx, MergeTreeReadTask * previous_task) = 0;
virtual void profileFeedback(ReadBufferFromFileBase::ProfileInfo info) = 0; virtual void profileFeedback(ReadBufferFromFileBase::ProfileInfo info) = 0;

View File

@ -64,7 +64,7 @@ public:
AlterConversionsPtr alter_conversions; AlterConversionsPtr alter_conversions;
/// Column names to read during PREWHERE and WHERE /// Column names to read during PREWHERE and WHERE
Columns task_columns; Columns task_columns;
/// Shared initialied size predictor. It is copied for each new task. /// Shared initialized size predictor. It is copied for each new task.
MergeTreeBlockSizePredictorPtr shared_size_predictor; MergeTreeBlockSizePredictorPtr shared_size_predictor;
}; };