Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Preserve chunks in semiInvariantFlatMap #75

Merged
merged 1 commit into from
Mar 8, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ object IndexedCosmosContainer {
): Stream[F, V2] =
base
.query(partitionKey, query, overrides)
.evalMap(f)
.evalMapChunk(f)
def queryWithDiagnostics(
partitionKey: K,
query: String,
Expand All @@ -380,7 +380,7 @@ object IndexedCosmosContainer {
): Stream[F, V2] =
base
.queryWithDiagnostics(partitionKey, query, overrides, handleDiagnostics)
.evalMap(f)
.evalMapChunk(f)
def queryCustom[A: Decoder](
partitionKey: K,
query: String,
Expand Down