Skip to content

Commit d2ed679

Browse files
committed
fix
1 parent ee4820b commit d2ed679

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/paimon/core/mergetree/lookup_levels.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Result<std::optional<T>> LookupLevels<T>::Lookup(const std::shared_ptr<InternalR
8181
auto lookup_level0 =
8282
[this](const std::shared_ptr<InternalRow>& key,
8383
const std::set<std::shared_ptr<DataFileMeta>, Levels::Level0Comparator>& level0)
84-
-> Result<std::optional<T>> { return this->lookupLevel0(key, level0); };
84+
-> Result<std::optional<T>> { return this->LookupLevel0(key, level0); };
8585
return LookupUtils::Lookup(*levels_, key, start_level, std::function(lookup),
8686
std::function(lookup_level0));
8787
}

0 commit comments

Comments
 (0)