Skip to content

Commit

Permalink
Update FrontendServiceImpl.java
Browse files Browse the repository at this point in the history
  • Loading branch information
CalvinKirs authored Sep 18, 2023
1 parent 5e56f40 commit 356d604
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1963,7 +1963,7 @@ public TStreamLoadMultiTablePutResult streamLoadMultiTablePut(TStreamLoadPutRequ
throw new MetaNotFoundException("table not found");
}
olapTables = new ArrayList<>(tableNames.size());
Map<String, OlapTable> olapTableMap = tables.stream().
Map<String, OlapTable> olapTableMap = tables.stream()
.filter(OlapTable.class::isInstance)
.map(OlapTable.class::cast)
.collect(Collectors.toMap(OlapTable::getName, olapTable -> olapTable));
Expand Down

0 comments on commit 356d604

Please sign in to comment.