Skip to content

Commit

Permalink
[CALCITE-6728] Introduce new methods to lookup tables and schemas ins…
Browse files Browse the repository at this point in the history
…ide schemas
  • Loading branch information
kramerul committed Dec 19, 2024
1 parent 6e4d10b commit 21e9dec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ private NameMap<T> loadNameMap() {
for (String name : delegate.getNames(LikePattern.any())) {
T entry = delegate.get(name);
if (entry != null) {
map.put(name, delegate.get(name));
map.put(name, entry);
}
}
return map;
Expand Down

0 comments on commit 21e9dec

Please sign in to comment.