Skip to content

Commit

Permalink
test commit
Browse files Browse the repository at this point in the history
  • Loading branch information
joc-a committed Jul 20, 2023
1 parent a877cf1 commit f1e025f
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,6 @@ class JavaOffsetDateTimeColumnType : ColumnType(), IDateColumnType {
is OffsetDateTime -> {
when (currentDialect) {
is SQLiteDialect -> "'${value.format(SQLITE_OFFSET_DATE_TIME_FORMATTER)}'"
is MysqlDialect -> "'${value.format(MYSQL_OFFSET_DATE_TIME_FORMATTER)}'"
else -> "'${value.format(DEFAULT_OFFSET_DATE_TIME_FORMATTER)}'"
}
}
Expand Down Expand Up @@ -299,7 +298,7 @@ class JavaOffsetDateTimeColumnType : ColumnType(), IDateColumnType {
is OffsetDateTime -> {
when (currentDialect) {
is SQLiteDialect -> value.format(SQLITE_OFFSET_DATE_TIME_FORMATTER)
is MysqlDialect -> value.format(MYSQL_OFFSET_DATE_TIME_FORMATTER)
is MysqlDialect -> value
else -> value
}
}
Expand Down

0 comments on commit f1e025f

Please sign in to comment.