Skip to content

Commit d4420d8

Browse files
authored
Merge pull request #428 from turb/drop-null-values
Drop JSON null values on streams
2 parents 9eacdb7 + d6bf4c8 commit d4420d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/scala/no/nrk/bigquery/util/StreamUtils.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ object StreamUtils {
2323
def toLineSeparatedJsonBytes[F[_]: Sync, A: Encoder](
2424
chunkSize: Int
2525
): Pipe[F, A, Chunk[Byte]] =
26-
_.map(_.asJson.noSpaces)
26+
_.map(_.asJson.dropNullValues.noSpaces)
2727
.intersperse("\n")
2828
.through(fs2.text.utf8.encode)
2929
.through(Compression.forSync[F].gzip())

0 commit comments

Comments
 (0)