[Refactor] Fixes some be typo part 2 (#4747)

This commit is contained in:
Zhengguo Yang
2020-10-20 09:28:57 +08:00
committed by GitHub
parent 34d5ab8e07
commit 09f97f8a05
224 changed files with 744 additions and 745 deletions

View File

@ -46,8 +46,8 @@ DataSpliter::DataSpliter(const RowDescriptor& row_desc) :
DataSpliter::~DataSpliter() {
}
// We use the ParttitionRange to compare here. It should not be a member function of PartitionInfo
// class becaurce there are some other member in it.
// We use the PartitionRange to compare here. It should not be a member function of PartitionInfo
// class because there are some other member in it.
static bool compare_part_use_range(const PartitionInfo* v1, const PartitionInfo* v2) {
return v1->range() < v2->range();
}