We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 114c570 commit a65a82bCopy full SHA for a65a82b
core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl/api/parse.kt
@@ -513,7 +513,7 @@ internal fun DataColumn<String?>.tryParseImpl(options: ParserOptions?): DataColu
513
514
else -> {
515
val trimmed = str.trim()
516
- val res = parserWithOptions(trimmed) ?: continue
+ val res = parserWithOptions(trimmed) ?: break
517
parsedValues += res
518
hasNotNulls = true
519
}
0 commit comments