Skip to content

Commit 71856bc

Browse files
committed
Omit empty cells for null values instead of double quotes (""). Fixes #304
1 parent 028e530 commit 71856bc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/scala/ldbc/snb/datagen/transformation/io/GraphWriter.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ class WriterFormatOptions(val format: String, mode: Mode, private val customForm
2525
"header" -> "true",
2626
"sep" -> "|",
2727
"dateFormat" -> Raw.datePattern,
28-
"timestampFormat" -> Raw.dateTimePattern
28+
"timestampFormat" -> Raw.dateTimePattern,
29+
"nullValue" -> null
2930
)
3031

3132
val forcedRawCsvFormatOptions = Map(

0 commit comments

Comments
 (0)