We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81b4c6b commit d22b000Copy full SHA for d22b000
dataframe-arrow/src/main/kotlin/org/jetbrains/kotlinx/dataframe/io/ArrowWriterImpl.kt
@@ -249,7 +249,7 @@ internal class ArrowWriterImpl(
249
strictType: Boolean,
250
strictNullable: Boolean,
251
): FieldVector {
252
- val containNulls = (column == null || column.hasNulls())
+ val containNulls = (column == null || column.values().any { it == null})
253
// Convert the column to type specified in field. (If we already have target type, convertTo will do nothing)
254
255
val (convertedColumn, actualField) = try {
0 commit comments