Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update comments
  • Loading branch information
sadikovi committed Jul 24, 2022
commit fbdf9d8e7eca3deda0e3fbbbe047980dc7fff2db
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ class UnivocityParser(
} catch {
case NonFatal(e) =>
// If fails to parse, then tries the way used in 2.0 and 1.x for backwards
// compatibility only if no custom pattern has been set or parser policy is legacy.
// compatibility if enabled.
if (!enableParsingFallbackForTimestampType) {
throw e
}
Expand All @@ -235,7 +235,7 @@ class UnivocityParser(
} catch {
case NonFatal(e) =>
// If fails to parse, then tries the way used in 2.0 and 1.x for backwards
// compatibility only if no custom pattern has been set or parser policy is legacy.
// compatibility if enabled.
if (!enableParsingFallbackForDateType) {
throw e
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ class JacksonParser(
} catch {
case NonFatal(e) =>
// If fails to parse, then tries the way used in 2.0 and 1.x for backwards
// compatibility only if no custom pattern has been set or parser policy is legacy.
// compatibility if enabled.
if (!enableParsingFallbackForTimestampType) {
throw e
}
Expand All @@ -297,7 +297,7 @@ class JacksonParser(
} catch {
case NonFatal(e) =>
// If fails to parse, then tries the way used in 2.0 and 1.x for backwards
// compatibility only if no custom pattern has been set or parser policy is legacy.
// compatibility if enabled.
if (!enableParsingFallbackForDateType) {
throw e
}
Expand Down