We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9eacdb7 + d6bf4c8 commit d4420d8Copy full SHA for d4420d8
core/src/main/scala/no/nrk/bigquery/util/StreamUtils.scala
@@ -23,7 +23,7 @@ object StreamUtils {
23
def toLineSeparatedJsonBytes[F[_]: Sync, A: Encoder](
24
chunkSize: Int
25
): Pipe[F, A, Chunk[Byte]] =
26
- _.map(_.asJson.noSpaces)
+ _.map(_.asJson.dropNullValues.noSpaces)
27
.intersperse("\n")
28
.through(fs2.text.utf8.encode)
29
.through(Compression.forSync[F].gzip())
0 commit comments