We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee4820b commit d2ed679Copy full SHA for d2ed679
src/paimon/core/mergetree/lookup_levels.cpp
@@ -81,7 +81,7 @@ Result<std::optional<T>> LookupLevels<T>::Lookup(const std::shared_ptr<InternalR
81
auto lookup_level0 =
82
[this](const std::shared_ptr<InternalRow>& key,
83
const std::set<std::shared_ptr<DataFileMeta>, Levels::Level0Comparator>& level0)
84
- -> Result<std::optional<T>> { return this->lookupLevel0(key, level0); };
+ -> Result<std::optional<T>> { return this->LookupLevel0(key, level0); };
85
return LookupUtils::Lookup(*levels_, key, start_level, std::function(lookup),
86
std::function(lookup_level0));
87
}
0 commit comments