Skip to content

Commit

Permalink
Fix compilation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
wendigo committed Sep 12, 2023
1 parent 029e1a0 commit ae7d1d4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ public Map<Class<?>, Object> getTransactionLogEntries(
Stream<Object> entries = getEntries(
tableSnapshot,
entryTypes,
(checkpointStream, jsonStream) -> entryMapper.apply(Stream.concat(checkpointStream, jsonStream)),
(checkpointStream, jsonStream) -> entryMapper.apply(Stream.concat(checkpointStream, jsonStream.stream().map(Transaction::transactionEntries).flatMap(Collection::stream))),
session,
fileSystemFactory.create(session),
fileFormatDataSourceStats);
Expand Down

0 comments on commit ae7d1d4

Please sign in to comment.